C#寫入INI文件、讀取INI文件內(nèi)容
當前位置:點晴教程→知識管理交流
→『 技術文檔交流 』
C#寫入INI文件、讀取INI文件內(nèi)容,具體實現(xiàn)的功能:選擇INI文件、寫入INI文件、讀取ini文件,并讀寫注冊表相關操作,在讀取INI時,讀取指定INI文件的特定段落中的關鍵字的數(shù)值,請先輸入section和key的值再點擊,可以讀取出INI文件節(jié)點中各個值的詳細信息。
private void button1_Click ( object sender , System.EventArgs e ) { try { openFileDialog1.ShowDialog ( ) ; textBox1.Text = openFileDialog1.FileName ; } catch(Exception ex) { MessageBox.Show(ex.Message); } } //寫入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 ; try { WritePrivateProfileString ( section , key , keyValue , FileName ) ; MessageBox.Show ( "成功寫入INI文件!" , "信息" ) ; } catch(Exception ex) { MessageBox.Show(ex.Message); } } //讀取指定INI文件的特定段落中的關鍵字的數(shù)值 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 , "無法讀取對應數(shù)值!" , temp , 255 , FileName ) ; //顯示讀取的數(shù)值 textBox4.Text = temp.ToString ( ) ; } 附件:xmlini.rar 該文章在 2021/2/4 18:36:39 編輯過 |
關鍵字查詢
相關文章
正在查詢... |