在 Delphi Prism 中解析 XML 或 JSON
我试图在 Delphi Prism 中解析 XML 或 JSON(没关系,我感兴趣的 API 提供两者),但所有教程和 Howtos 显示的 Delphi 代码在 Prism 中不再可用。
请你帮助我好吗?
(我不是试图从 XML 编译 Prism 代码,而是尝试在 Prism 中解析 XML ^^)
I am trying to parse either XML or JSON (doesn't matter, the API I'm interested in provides both) in Delphi Prism but all Tutorials and Howtos show the Delphi code which is no longer available in Prism.
Could you please help me?
(I'm not trying to compile Prism code from XML, I'm trying to parse XML in Prism ^^)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
真的很容易。确保新项目的框架版本为3.5及以上版本。那么你有两个选择,如果你有 XSD,你可以从 xml 创建类。您可以使用 XSD.EXE 工具 (/language:Oxygene) 来执行此操作。如果要解析任何 xml,可以使用 System.Xml.Linq 命名空间中定义的 XDocument 类:
Pretty easy really. Make sure you have a framework version 3.5 and above version of a new project. Then you have two choices, if you have an XSD you can create classes from xml. You can do this with the XSD.EXE tool (/language:Oxygene). If you want to parse any xml, you can use the XDocument class defined in the System.Xml.Linq namespace: