国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > 綜合 > 正文

ini文件讀取(C#)

2024-07-21 02:25:53
字體:
來源:轉載
供稿:網友
//讀取ini文件;
private string getprivateprofilestring(string applicationname, string keyname,string default, string filename)
{
string[] iniitems = new string[0];
string inilines;
string iniline;
int i, j;
try
{
//讀取ini文件;
system.io.streamreader inifile = new system.io.streamreader(filename, system.text.encoding.default);
inilines = inifile.readtoend();
inifile.close();
}
catch
{
return default;
}
//以回車符分割,得到每一行
iniitems = inilines.split(' ');
//遍歷每一行
for (i = 0; i < iniitems.getlength(0); i++) 
{
//找到匹配值
if (iniitems[i].trim().toupper() == '[' + applicationname.trim().toupper() + ']')
{
//從下一行開始搜索
for (j = i + 1; j < iniitems.getlength(0); j++)
{
iniline = iniitems[j].trim();
if (iniline.length > 0)
{
//如果找到了另一個段,那么就越段了,則返回默認值
if (iniline[0] == '[' && iniline[iniline.length - 1] == ']') return default;
}
//去掉所有空格
iniline = iniitems[j].trimstart().replace(" ", "");
if (iniline.substring(0, math.min(keyname.length + 1, iniline.length)).toupper() == keyname.toupper() + "=")
{ 
//如果找到了key匹配
return iniitems[j].substring(iniitems[j].indexof('=') + 1);
}
}
return default; //沒有找到key匹配的,則返回默認值
}
}
return default; //返回默認值



發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 襄垣县| 商河县| 东兴市| 定日县| 土默特右旗| 仙游县| 南京市| 千阳县| 黄骅市| 大田县| 苍溪县| 泽州县| 南陵县| 山东省| 乌海市| 神池县| 台中县| 塔城市| 红原县| 长岭县| 昆明市| 诏安县| 芦溪县| 宜都市| 温宿县| 闸北区| 封开县| 西昌市| 城口县| 德江县| 平安县| 犍为县| 全椒县| 兴化市| 饶河县| 延川县| 南陵县| 海兴县| 桑日县| 连南| 宜良县|