如何使用一个草图编写多个 XML 文件
有人对我如何仅使用一个草图的代码编写多个 XML 文件有一些建议吗?我正在尝试使用 ProXML 库来执行此操作,但这不起作用。由于某种原因,两个 XML 文件之一被只应位于另一个文件中的数据“污染”。
谢谢
Does anybody have some advice on how I can write multiple XML files with only the code of one sketch. I'm trying to do this using the ProXML library but that doesn't work. For some reason, one of the two XML files is 'polluted' with data that should only be in the other file.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种更简单的方法是使用 printwriter,并为文件内容编写 XMLElement.toString():
这不会生成具有 doctype 的 xml 文件,但它们肯定与处理兼容,因为可以读回写入的 XML形成一个等效的 XMLElement。
(PrintWriter 的参考页:http://processing.org/reference/PrintWriter.html)
A simpler approach is to use the printwriter, and writing XMLElement.toString() for the content of your files:
This does not generate xml files with a doctype, but they're certainly Processing-compatible in that the written XML can be read back in to form an equivalent XMLElement.
(reference page for PrintWriter: http://processing.org/reference/PrintWriter.html)