码迷,mamicode.com
首页 > 其他好文 > 详细

读取host文件代码

时间:2015-04-04 18:31:07      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:winform   c#   hosts   

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"文件路径


读取host文件代码

标签:winform   c#   hosts   

原文地址:http://blog.csdn.net/u014180504/article/details/44874079

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!