使用SimpleXml解析xml时第-1行出错
当使用 Simple 解析 XML 文件时,我收到如下错误:
org.simpleframework.xml.core.ValueRequiredException:
Unable to satisfy ... on field 'id' private String Foo.id
for class Foo at line -1
我需要更改什么才能获得真实的行号?
[编辑]这是一个要点:SimpleXml 行号问题的演示
I'我使用 simple-xml:2.6.1 和 junit:4.9
When parsing my XML files with Simple, I get errors like the following one:
org.simpleframework.xml.core.ValueRequiredException:
Unable to satisfy ... on field 'id' private String Foo.id
for class Foo at line -1
What do I need to change to get the real line number?
[EDIT] Here is a Gist: Demo for SimpleXml line number problem
I'm using simple-xml:2.6.1 and junit:4.9
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
取决于它在哪里运行。如果您在 JDK 1.5 中运行,类路径中没有 StAX,这意味着您正在使用 DOM,因此错误时您将始终得到 -1。如果您在类路径中使用带有 StAX 的 JDK 1.5 或更高版本,则 StAX 不支持行号(也许尝试不同的库,我建议 伍德斯托克斯)。
[编辑] 如果您想尝试 Woodstox 并且使用 Maven,请将其添加到您的 POM 中:
这是使用 Apache License 2.0 的版本。如果您更喜欢 LGPL 2.1,请将
-asl
替换为-lgpl
。Depends on where it is run. If you run in JDK 1.5, witout StAX in the classpath this means you are using DOM, so you will always get -1 on an error. If you use JDK 1.5 or above with StAX in the classpath then StAX does not support line numbers (perhaps try a different lib, I recomment Woodstox).
[EDIT] If you want to try Woodstox and you use Maven, add this to your POM:
This is the version which uses Apache License 2.0. If you prefer LGPL 2.1, replace
-asl
with-lgpl
.