1 Star 1 Fork 0

Eden / Notes

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
Lua 文件读取和写入.md 1.72 KB
Copy Edit Raw Blame History

Lua 文件读取和写入

--[[
-- C:\\Users\\eden\\Desktop\\LuaLearning\\demo\\data 中的内容
Entry{
	author = "eden1" ,
	title = "bookname1" ,
	publishing = "publishing company1" ,
	year = "1997"
}

Entry{
	author = "eden2" ,
	title = "bookname2" ,
	publishing = "publishing company2" ,
	year = "1997"
}

Entry{
	author = "eden3" ,
	title = "bookname3" ,
	publishing = "publishing company3" ,
	year = "1997"
}

Entry{
	author = "eden4" ,
	title = "bookname4" ,
	publishing = "publishing company4" ,
	year = "1997"
}
--]]

-- Entry{ <code> } 与 Entry({<code>}) 完全相同的

do
local count = 0
	function Entry(...) count = count + 1 end

	dofile("C:\\Users\\huangMP.DESKTOP-88ENV6P\\Desktop\\LuaLearning\\demo\\data")

	print("number of entries : " .. count)

	local authors = {}   -- 作者姓名集合
	function Entry(b) authors[b[1]] = true end
	dofile("C:\\Users\\DESKTOP-88ENV6P\\Desktop\\LuaLearning\\demo\\data")
	for name in pairs(authors) do
		print(name)
	end

end

-- 采用键值对的方式保存

--[[
-- C:\\Users\\DESKTOP-88ENV6P\\Desktop\\LuaLearning\\demo\\data2 中的内容
Entry{
	author = "eden1" ,
	title = "bookname1" ,
	publishing = "publishing company1" ,
	year = "1997"
}

Entry{
	author = "eden2" ,
	title = "bookname2" ,
	publishing = "publishing company2" ,
	year = "1997"
}

Entry{
	author = "eden3" ,
	title = "bookname3" ,
	publishing = "publishing company3" ,
	year = "1997"
}

Entry{
	author = "eden4" ,
	title = "bookname4" ,
	publishing = "publishing company4" ,
	year = "1997"
}
--]]

do
	local authors = {}   -- 作者姓名集合
	function Entry(b) authors[b.author] = true end
	dofile("C:\\Users\\DESKTOP-88ENV6P\\Desktop\\LuaLearning\\demo\\data2")
	for name in pairs(authors) do
		print(name)
	end
end
1
https://gitee.com/eden2f/notes.git
git@gitee.com:eden2f/notes.git
eden2f
notes
Notes
master

Search

53164aa7 5694891 3bd8fe86 5694891