iPhone 检查要解析的文件的格式

发布于 2024-11-10 14:43:10 字数 299 浏览 1 评论 0原文

我正在做一个应用程序,它可以解析从不同程序生成的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光无声 2024-11-17 14:43:10

它是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文