方法介绍
方法名称:读取文件数据
语法:io.read() 等价于 io.input():read(···)
方法例子
io.input("/mnt/sdcard/test.txt")
while true do
local ReadContent = io.read()
if ReadContent == null then
break
end
print(ReadContent)
io.close()