Flex 中的 XML 解析问题
我有一个超过 10,000 行的 XML,当我使用 URLLoader 类解析该 xml 时。我无法跟踪整个 xml。在跟踪时我从中间获取 xml。任何人都可以建议我如何解析 xml 文档。 提前致谢
I have an XML with more than 10,000 lines,when i am parsing that xml using URLLoader class.i am unable to trace the entire xml.While tracing i am getting xml from the middle.can anyone suggest me how to parse the xml document.
Thanks in Advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Flex Builder 3 中,控制台默认限制为 80,000 个字符。
要更改或删除此限制,请查看以下首选项页面...
首选项>运行/调试>安慰
In Flex Builder 3, the console is limited to 80,000 characters by default.
To change, or remove this limit look at the following Preferences Page...
Preferences > Run/Debug > Console
我认为控制台可以显示的行数是有限的。我通过创建一个视图堆栈,将所有应用程序放在一个视图中,并将大文本区域放在另一个视图中来解决这个问题。然后我有一个按钮,可以将我带到该文本区域视图,当它打开时,它会使用 XML 填充文本区域。然后我就能看到这一切。我没有遇到过它可以处理的行数有任何限制。
I think the console is limited on how many lines it can display. I solved this by creating a viewstack, putting all of my application in one view, and a big text area in another view. Then I have a button that will take me to that text area view and when it does it populates the text area with the XML. Then I can see it all. I have not come across any limit to the number of lines this can handle.