Maison  >  Article  >  développement back-end  >  C#读取host文件代码

C#读取host文件代码

大家讲道理
大家讲道理original
2016-11-10 14:55:431853parcourir

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Text;
using System.Windows.Forms;
 
 
namespace 读取host文件
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
 
 
        private void button1_Click(object sender, EventArgs e)
        {
            string str;
            StreamReader sr = new StreamReader(@"C:\windows\system32\drivers\etc" + "\\hosts", false);
            str = sr.ReadToEnd().ToString();
            sr.Close();
            this.richTextBox1.Text = str;///读取
 
        }
 
   }
 
}
 
@"C:\windows\system32\drivers\etc" + "\\hosts"文件路径

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn