马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
听03很多师兄说主讲老师杭城方讲课很差就连旁听也没有去了)在C#中读取和写进ini文件的一段代码,实在本文只是指出一个偏向,但愿人人可以举一反三。
以下为代码全文:
//写INI文件
[DllImport("kernel32")]
privatestaticexternboolWritePrivateProfileString(stringsection,stringkey,stringval,stringfilePath);
//读ini文件(字符
[DllImport("kernel32")]
privatestaticexternintGetPrivateProfileString(stringsection,stringkey,stringdef,StringBuilderretVal,intsize,stringfilePath);
//读ini文件(数字
[DllImport("kernel32")]
privatestaticexternintGetPrivateProfileInt的(stringsection,stringkey,intdef,stringfilePath);
//////////////////////////////////////////////////////////////
usingSystem;
usingSystem.IO;
usingSystem.Runtime.InteropServices;
usingSystem.Text;
namespaceEchonComponentLibrary
{
///<summary>
///IniFile的择要申明。
///</summary>
publicclassIniFile
{
privatestringFFileName;
[DllImport("kernel32")]
觉得J2EE好像有很多工具,比如servlet,jboss,tomcat,ejb什么的,可是微软的.NET怎么什么也没有啊? |