iPhone 检查要解析的文件的格式
我正在做一个应用程序,它可以解析从不同程序生成的 XML 文件。我需要检查文件的第一行来检测哪个程序生成了 xml 并调用正确的方法来解析它。
即生成的文件之一以这一行开头:
<PROFILE XYZ="1">
另一个程序生成以这一行开头的文件:
<AppXYZ DBVersion="1.2.3.4">
我需要检查这一行。
任何帮助表示赞赏。
谢谢,
麦克斯
I'm doing an app which can parse XML files generated from different programs. I need to check the first line of the file to detect which program has generated the xml and call the correct method to parse it.
i.e one of the file generated starts with this line:
<PROFILE XYZ="1">
another program generates the file starting with this line:
<AppXYZ DBVersion="1.2.3.4">
I need to check this line.
Any help is appreciated.
Thanks,
Max
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它是 XML,所以只需将其解析为 XML 即可。检查第一个元素并从那里决定。 SAX 或 DOM,两者都可以。
It's XML, so just parse it as XML. Check the first element and decide from there. SAX or DOM, either works.