C#语言还是比较常见的东西,这里我们主要介绍C#对INI文件操作,包括介绍对INI文件进行写操作等方面。
C#对INI文件操作
对INI文件进行写操作,是通过组件button2的"Click"事件来实现的。这里有一点应该注意,当在调用 WritePrivateProfileString()对INI文件进行写操作的时候,如果此时在INI文件中存在和要写入的信息相同的段落名称和关键字,则将覆盖此INI信息。下面是button2组件的"Click"事件对应的代码清单:
- 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的必须满足三个前提:INI文件的全路径、段落名称和关键字名称。否则就无法正确读取。你可以设定读取不成功后的缺省数值,在下面的程序中,为了直观设定的是“无法读取对应数值!”字符串,读取INI文件是通过button3组件的“Click”事件来实现的,下面是其对应的代码清单:
- 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 ,"无法读取对应数值!",
- temp , 255 , FileName ) ;
- //显示读取的数值
- textBox4.Text = temp.ToString( ) ;
- }
以上介绍C#对INI文件操作
【编辑推荐】