生成 XML 时如何保留 CDATA 中的换行符?
我想将一些包含空格字符(例如 newline
和 tab
)的文本写入 xml 文件中,所以我使用,
Element element = xmldoc.createElement("TestElement");
element.appendChild(xmldoc.createCDATASection(somestring));
但是当我在 using 中读回它时,
Node vs = xmldoc.getElementsByTagName("TestElement").item(0);
String x = vs.getFirstChild().getNodeValue();
我得到一个字符串,其中包含不再有换行符。
当我直接查看磁盘上的 xml 时,换行符似乎被保留。 所以在读取xml文件的时候就会出现这个问题。
如何保留换行符?
谢谢!
I want to write some text that contains whitespace characters such as newline
and tab
into an xml file so I use
Element element = xmldoc.createElement("TestElement");
element.appendChild(xmldoc.createCDATASection(somestring));
but when I read this back in using
Node vs = xmldoc.getElementsByTagName("TestElement").item(0);
String x = vs.getFirstChild().getNodeValue();
I get a string that has no newlines anymore.
When i look directly into the xml on disk, the newlines seem preserved. so the problem occurs when reading in the xml file.
How can I preserve the newlines?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我不知道您如何解析和编写文档,但这里有一个基于您的文档的增强代码示例:
使用 LSSerializer 进行序列化是 W3C 的方法(参见此处)。 输出符合预期,带有行分隔符:
I don't know how you parse and write your document, but here's an enhanced code example based on yours:
The serialization using LSSerializer is the W3C way to do it (see here). The output is as expected, with line separators:
您需要使用node.getNodeType()检查每个节点的类型。 如果类型是 CDATA_SECTION_NODE,则需要将 CDATA 保护连接到 node.getNodeValue。
You need to check the type of each node using node.getNodeType(). If the type is CDATA_SECTION_NODE, you need to concat the CDATA guards to node.getNodeValue.
您不一定必须使用 CDATA 来保留空白字符。
XML 规范指定如何对这些字符进行编码。
因此,例如,如果您有一个值包含新空格的元素,您应该使用
回车符对其进行编码:
等等
You don't necessarily have to use CDATA to preserve white space characters.
The XML specification specify how to encode these characters.
So for example, if you have an element with value that contains new space you should encode it with
Carriage return:
And so forth
编辑:删除所有不相关的内容
我很想知道您正在使用什么 DOM 实现,因为它没有反映我尝试过的几个 JVM 中的默认行为(它们附带 Xerces impl) 。 我也对您的文档有哪些换行符感兴趣。
我不确定 CDATA 是否应该保留空格。 我怀疑这涉及很多因素。 DTD/模式不会影响空白的处理方式吗?
您可以尝试使用 xml:space="preserve" 属性。
EDIT: cut all the irrelevant stuff
I'm curious to know what DOM implementation you're using, because it doesn't mirror the default behaviour of the one in a couple of JVMs I've tried (they ship with a Xerces impl). I'm also interested in what newline characters your document has.
I'm not sure if whether CDATA should preserve whitespace is a given. I suspect that there are many factors involved. Don't DTDs/schemas affect how whitespace is processed?
You could try using the xml:space="preserve" attribute.
xml:space='preserve' 不是吗。 这仅适用于“所有空白”节点。 也就是说,如果您想要其中的空白节点,
但请注意这些空白节点只是空白。
我一直在努力让 Xerces 生成允许隔离 CDATA 内容的事件。 我还没有解决办法。
xml:space='preserve' is not it. That is only for "all whitespace" nodes. That is, if you want the whitespace nodes in
But see that those whitespace nodes are ONLY whitespace.
I have been struggling to get Xerces to generate events allowing isolation of CDATA content as well. I have no solution as yet.