如何从 Lua 将表格保存到文件

我正在使用 Lua 打印表格到文件方面遇到问题(而且我是 Lua 新手)。

这是一段代码我在这里找到的来打印表格:

function print_r ( t )
    local print_r_cache={}
    local function sub_print_r(t,indent)
        if (print_r_cache[tostring(t)]) then
            print(indent.."*"..tostring(t))
        else
            print_r_cache[tostring(t)]=true
            if (type(t)=="table") then
                for pos,val in pairs(t) do
                    if (type(val)=="table") then
                        print(indent.."["..pos.."] => "..tostring(t).." {")
                        sub_print_r(val,indent..string.rep(" ",string.len(pos)+8))
                        print(indent..string.rep(" ",string.len(pos)+6).."}")
                    elseif (type(val)=="string") then
                        print(indent.."["..pos.."] => "'..val..'"')
                    else
                        print(indent.."["..pos.."] => "..tostring(val))
                    end
                end
            else
                print(indent..tostring(t))
            end
        end
    end
    if (type(t)=="table") then
        print(tostring(t).." {")
        sub_print_r(t,"  ")
        print("}")
    else
        sub_print_r(t,"  ")
    end
    print()
end

我不知道 'print' 命令到哪里去了,我正在另一个程序内运行这个 Lua 代码。我想做的是将表格保存到 .txt 文件中。这是我尝试过的;

function savetxt ( t )
   local file = assert(io.open("C:\temp\test.txt", "w"))
   file:write(t)
   file:close()
end

然后在 print_r 函数中,我将所有 'print' 改为了 'savetxt'。但这并没有起作用。它似乎没有以任何方式访问文本文件。有没有人能提供另一种方法呢?

我怀疑这一行是问题所在;

local file = assert(io.open("C:\temp\test.txt", "w"))

更新; 我尝试了 Diego Pino 建议的编辑,但仍然没有成功。我从另一个程序(我没有其源代码)中运行此 Lua 脚本,因此我不确定输出文件的默认目录在哪里(是否有一种可以程序化获得的方法?)。因为这是从另一个程序调用的,所以可能有一些东西阻止了输出。

更新 #2; 似乎问题出在这一行代码上:

   local file = assert(io.open("C:\\test\\test2.txt", "w"))

我尝试将它更改为 "C:\temp\test2.text",但这并没有起作用。我相当有信心这是一个错误。如果我注释掉这行之后的所有行(但是仍然保留这行),它仍然失败;如果我注释掉这行(和随后的所有 'file' 行),那么代码就可以运行。这个错误是什么原因呢?

点赞
用户5675002
用户5675002
我不知道'print'命令的输出方向在哪里,

print()函数的输出默认为输出到文件中,你可以使用 io.output(\[file\]) 来改变输出方向,了解有关查询和更改默认输出的详细信息,请参阅 Lua 手册。

如果我没有指定目录,则文件会创建在哪里呢?

通常会创建在当前工作目录中。
2016-04-25 08:57:47
用户134758
用户134758

你的 print_r 函数将一个表格打印到 _stdout_。你希望将 print_r 的输出打印到文件中。更改 print_r 函数,使其不再输出到 stdout,而是输出到文件描述符。可能最简单的方法是将文件描述符传递给 print_r 并覆盖 print 函数:

function print_r (t, fd)
    fd = fd or io.stdout
    local function print(str)
       str = str or ""
       fd:write(str.."\n")
    end
    ...
end

其余的 print_r 不需要任何更改。

稍后在 savetxt 中调用 print_r 将表格打印到文件中。

function savetxt (t)
   local file = assert(io.open("C:\temp\test.txt", "w"))
   print_r(t, file)
   file:close()
end
2016-04-25 09:07:42
用户4649220
用户4649220
require("json")

result = {
    ["ip"]="192.168.0.177",
    ["date"]="2018-1-21",
}

local test = assert(io.open("/tmp/abc.txt", "w"))
result = json.encode(result)
test:write(result)
test:close()

local test = io.open("/tmp/abc.txt", "r")
local readjson= test:read("*a")
local table =json.decode(readjson)
test:close()

print("ip: " .. table["ip"])


Another way:
[http://lua-users.org/wiki/SaveTableToFile](http://lua-users.org/wiki/SaveTableToFile)

Save Table to File
function table.save( tbl,filename )

Load Table from File
function table.load( sfile )
2018-01-30 08:47:36