xml 的 Itextsharp 文档
我正在寻找有关 ItextSharp 中 XML 解析器的文档,我听说几年前有一个 dtd,但这似乎已经失效了。有谁知道我在哪里可以找到所有有效的标签和参考文献?
我正在使用 ItextSharp 和 Spark
谢谢
I am looking for documentation on the XML parser in ItextSharp, I heard there was a dtd years ago but this seems to be defunt. Does anyone know where I can find out all the valid tags and references?
I am using ItextSharp with Spark
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如有疑问,使用源。浏览当前 iText 源代码的副本,我发现唯一可用的
SimpleXMLDocHandler
是HTMLWorker
。如果您查看 HtmlTags.cs,您将看到
HTMLWorker
使用的所有标记和属性常量。它并不完全全面,但在不久的将来将会得到一些增强。
我没有看到 4.1.2 标签,但 SF 的 iTextSharp 项目中有一个 4.1.6 标签。它显示 ITextHandler 在
HandleStartingTags()
中使用来自ElementTag
的一堆常量。它还使用 ElementFactory 用于构建各种受支持的标签。查看每个函数的源代码将告诉您它支持哪些属性。When in doubt, use the source. Poking around in my copy of the current iText source, I see that the only
SimpleXMLDocHandler
available isHTMLWorker
.And if you look at the source for HtmlTags.cs, you'll see all the tag and attribute constants
HTMLWorker
uses.It's not exactly comprehensive, but is going to be getting some Enhancement in the immediate future.
I don't see a 4.1.2 tag, but there's one for 4.1.6 in the iTextSharp project on SF. It shows ITextHandler using a bunch of constants from
ElementTag
inHandleStartingTags()
. It also uses ElementFactory to build the various supported tags. Looking at the source for each function will tell you which attributes it supports.