将任何 XML 模式表示为数据结构的最佳方法是什么?
我试图将任何 XML 模式表示为数据结构,该数据结构维护该模式的层次结构以及模式中每个元素的位置。有什么建议吗?
I am trying to represent any XML schema into data structure, which maintain the hierarchy of that schema and positions of each element in the schema. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
XML 模式本身就是 XML,因此最全面的 XML 库都适合您,具体取决于构建结构后您想要执行的操作。我推荐 XML::LibXML 或 XML::Twig。
XML Schemas are themselves XML so most comprehensive XML libraries will work for you, depending on what you want to do when you have the structure built. I recommend XML::LibXML or XML::Twig.
也许您想要做的事情最好用 XML::Validator::Schema 模块。从技术上讲,正确的答案是 XML::Validator::Schema::Parser (正如您所猜测的,它将模式解析为数据结构),但它是一个内部模块。但也许它的分析也会有所帮助。
Perhaps what you've trying to do would be best accomplished with XML::Validator::Schema module. Technically, the correct answer is XML::Validator::Schema::Parser (which, as you guess it, parses schema into data structure), but it's an internal module. But maybe its analysis will be helpful as well.