iText从2.1升级到5.x,如何转换XmlPeer和XmlParser?

发布于 2024-11-02 19:28:44 字数 402 浏览 0 评论 0原文

在将 iText(这是 Java)从 2.1 升级到 5.x 的过程中,我发现一些旧代码使用 XmlPeer 对象的映射从 xml 模板生成 pdf,并在此过程中替换模板部分。

一般来说,它看起来像:

Document document = new Document();
HashMap tagmap = new HashMap();
XmlPeer peer = new XmlPeer(ElementTags.ITEXT, "tag");
peer.setContent("value");
tagmap.put(peer.getAlias(), peer);
...
XmlParser.parse(document, blah, tagmap);

5.0 中似乎没有类似的东西。我错过了什么吗?

In upgrading our iText (this is Java) from 2.1 to 5.x, I'm finding some old code that uses a map of XmlPeer objects to generate a pdf from a xml template and replace template sections on the way.

Generally it looks like:

Document document = new Document();
HashMap tagmap = new HashMap();
XmlPeer peer = new XmlPeer(ElementTags.ITEXT, "tag");
peer.setContent("value");
tagmap.put(peer.getAlias(), peer);
...
XmlParser.parse(document, blah, tagmap);

There seems to be no equivalent to this in 5.0. Am I missing something?

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

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

发布评论

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

评论(1

爱*していゐ 2024-11-09 19:28:44

不。布鲁诺决定批量撤掉大部分旧东西。

最接近的等价物是 HTMLWorker...但是,嘿,这就是 XSLT 的用途,对吗?

No. Bruno decided to yank out much of the Older Stuff wholesale.

The closest equivalent is HTMLWorker... but hey, that's what XSLT is for right?

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