mtvtop 发表于 2011-10-22 17:41:54

一个简单的ini提取问题,高手帮助【已解决】

本帖最后由 mtvtop 于 2011-10-22 18:01 编辑

Config.ini内容[坐标]
xx=140
yy=140

[分区]
ServerUrl=http://www.baidu.com/

[帐号类型]
AccountType=1au3内容#include <Array.au3> ;读取ini用的
;读取ini配置文件
$Account = IniReadSection("Config.ini", "坐标") ;读配置文件(*.ini)字段的 账号 与值.
$ServerUrl = IniReadSection("Config.ini", "分区")
$AccountType = IniRead("Config.ini", "帐号类型", "AccountType", "0")
;取出 账号 的值
For $i = 1 To $Account
        ;$comAccount = $comAccount & "|" & $Account[$i]
        MsgBox(4096, "", "关键字: " & $Account[$i] & @CRLF & "值: " & $Account[$i])
Next

报错信息

风行者 发表于 2011-10-22 17:46:18

估计你是用快捷方式运行程序,读取ini最好在路径加上@scriptdir
$Account = IniReadSection(@scriptdir&"\Config.ini", "坐标") ;读配置文件(*.ini)字段的 账号 与值.

mtvtop 发表于 2011-10-22 18:00:52

太感谢了,原来没有编译要这样写呀!
页: [1]
查看完整版本: 一个简单的ini提取问题,高手帮助【已解决】