使用SimpleXml解析xml时第-1行出错

发布于 2024-12-02 05:18:57 字数 447 浏览 0 评论 0原文

当使用 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 技术交流群。

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

发布评论

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

评论(1

月牙弯弯 2024-12-09 05:18:57

取决于它在哪里运行。如果您在 JDK 1.5 中运行,类路径中没有 StAX,这意味着您正在使用 DOM,因此错误时您将始终得到 -1。如果您在类路径中使用带有 StAX 的 JDK 1.5 或更高版本,则 StAX 不支持行号(也许尝试不同的库,我建议 伍德斯托克斯)。

[编辑] 如果您想尝试 Woodstox 并且使用 Maven,请将其添加到您的 POM 中:

<dependency>
    <groupId>org.codehaus.woodstox</groupId>
    <artifactId>woodstox-core-asl</artifactId>
    <version>4.1.2</version>
</dependency>
<dependency>
    <groupId>org.codehaus.woodstox</groupId>
    <artifactId>stax2-api</artifactId>
    <version>3.1.1</version>
</dependency>

这是使用 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:

<dependency>
    <groupId>org.codehaus.woodstox</groupId>
    <artifactId>woodstox-core-asl</artifactId>
    <version>4.1.2</version>
</dependency>
<dependency>
    <groupId>org.codehaus.woodstox</groupId>
    <artifactId>stax2-api</artifactId>
    <version>3.1.1</version>
</dependency>

This is the version which uses Apache License 2.0. If you prefer LGPL 2.1, replace -asl with -lgpl.

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