如何过滤 StAX XMLStreamReader

发布于 2024-12-11 03:33:53 字数 203 浏览 0 评论 0原文

我需要连接一个接收 StAX XMLStreamReader 作为输入的 API,并过滤提供的流(将某个属性的值从 true 更改为 false)。

查看了 StreamReaderDelegate,但对于这个,我必须进行大量编码才能跟踪相关属性的所有访问路径。

有更好的办法吗?

提前致谢!

I need to hook into an API that receives a StAX XMLStreamReader as the input, and filter the supplied stream (change the value of a certain attribute from true to false).

Looked at StreamReaderDelegate, but with that one I'd have to do a lot of coding to keep track of all access paths to the attribute in question.

Is there a better way?

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

才能让你更想念 2024-12-18 03:33:53

使用 StAX,您可以改用事件 API 并利用 EventReaderDelegate。但代码量大致相同。使用委托也是推荐的解决方案,所以恐怕没有更好的方法。

With StAX, you could use the event API instead and utilize the EventReaderDelegate. The amount of code would be roughly the same though. Using delegates is also the recommended solution, so I'm afraid, there is no significantly better way.

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