保存程序配置到txt文件里

以文本形式保存,很不专业的方法,但效果其实也不错

准备: 

先运行以下语句创建文件: 
private  void Form1_FormClosing( object sender, FormClosingEventArgs e)
        {
             string S = textBox1.Text +  " * " + textBox1.BackColor.R +  " * " + textBox1.BackColor.G +  " * " + textBox1.BackColor.B;      // 要写入的字符串,以'*'或其它符号隔开,以便读取时能区分
             path = Application.StartupPath +  " //Settings ";
            System.IO.StreamWriter swr =  new System.IO.StreamWriter( new System.IO.FileStream(path, System.IO.FileMode.Create));
            swr.Write(S);
            swr.Close();
        }

读取方法: 
         private  void Form1_Activated( object sender, EventArgs e)
        {
            path = Application.StartupPath +  " //Settings ";
            System.IO.StreamReader SR =  new System.IO.StreamReader(path);
            Settings = SR.ReadToEnd().Split( ' * ');
            SR.Close();
             // ------set---------
            textBox1.Text = Settings[ 0];
            textBox1.BackColor = Color.FromArgb( int.Parse(Settings[ 1]),  int.Parse(Settings[ 2]),  int.Parse(Settings[ 3]));
        } 

保存方法: 
         private  void Form1_FormClosing( object sender, FormClosingEventArgs e)
        {
             string S = textBox1.Text +  " * " + textBox1.BackColor.R +  " * " + textBox1.BackColor.G +  " * " + textBox1.BackColor.B;        
            System.IO.StreamWriter swr =  new System.IO.StreamWriter( new System.IO.FileStream(path, System.IO.FileMode.Create));
            swr.Write(S);
            swr.Close();
        } 

注意:写入的各字符串不能包含分割字符 ' * '.

转载于:https://www.cnblogs.com/yazdao/archive/2012/03/31/2426332.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值