程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 如何在C#中讀寫INI文件(五)

如何在C#中讀寫INI文件(五)

編輯:關於C語言
this.Controls.AddRange ( new System.Windows.Forms.Control [ ] {

this.button3 ,

this.textBox4 ,

this.textBox3 ,

this.textBox2 ,

this.button2 ,

this.textBox1 ,

this.button1 ,

this.label3 ,

this.label2 ,

this.label1 } ) ;

this.MaximizeBox = false ;

this.Name = "Form1" ;

this.Text = "C#操作INI文件--寫操作" ;

this.ResumeLayout ( false ) ;

}

[STAThread]

static void Main ( )

{

Application.Run ( new Form1 ( ) ) ;

}

private void button1_Click ( object sender , System.EventArgs e )

{

openFileDialog1.ShowDialog ( ) ;

textBox1.Text = openFileDialog1.FileName ;

}

//寫入INI文件

private void button2_Click ( object sender , System.EventArgs e )

{

string FileName = textBox1.Text ;

string section = textBox2.Text ;

string key = textBox3.Text ;

string keyValue = textBox4.Text ;

WritePrivateProfileString ( section , key , keyValue , FileName ) ;

MessageBox.Show ( "成功寫入INI文件!" , "信息" ) ;

}

//讀取指定INI文件的特定段落中的關鍵字的數值

private void button3_Click ( object sender , System.EventArgs e )

{

StringBuilder temp = new StringBuilder ( 255 ) ;

string FileName = textBox1.Text ;

string section = textBox2.Text ;

string key = textBox3.Text ;

int i = GetPrivateProfileString ( section , key ,

"無法讀取對應數值!" , emp , 255 , FileName ) ;

//顯示讀取的數值

textBox4.Text = temp.ToString ( ) ;

}

}

}


總結



通過上面的這些介紹,可以看成C#操作INI文件的過程,其實就是C#調用Win32的API函數的過程。掌握了如何在C#申明Win32的API函數,再來操作INI就顯得非常簡單。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved