我有一个名为“users.xml”的空 XML 页面。我希望能够使用 REXML 创建所有内容。
require "rexml/document"
include REXML # so that we don't have to prefix everything with REXML::...
xmlfile = File.new("users.xml")
doc = Document.new(xmlfile)
//code to save root element here...
在我看来,doc
首先读取“users.xml”的内容,但文档中发生的更改不会传播回来。如何保存对文件的更改?