在ini文件中读取软件版本号

1 先新建一个.ini文件,内容如下:

2 引用

using System.Runtime.InteropServices;//引用命名空间


3 读取文件内容

新建


加入引用

        //读取.ini文件
        [DllImport("kernel32")]
        private static extern int GetPrivateProfileString(string section, string key, string def, StringBuilder retval, int size, string filePath);

        private string strFilePath = Application.StartupPath + "\\softVersion.ini";//获取INI文件路径,放在debug文件
        private string strSec = ""; //INI文件名


调用

            //读取INI文件中的版本号
            if (File.Exists(strFilePath))//读取时先要判读INI文件是否存在
            {
                //读取文件名
                strSec = Path.GetFileNameWithoutExtension(strFilePath);
                textBox_softVersion.Text = ContentValue(strSec, "softVersion");

            }
            else
            {
                MessageBox.Show("INI文件不存在,无法读取标准软件版本");
            }

...

其中的方法:

        private string ContentValue(string Section, string key)
        {

            StringBuilder temp = new StringBuilder(1024);
            GetPrivateProfileString(Section, key, "", temp, 1024, strFilePath);
            return temp.ToString();
        }

...

别忘记加using System.IO

...

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值