Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用简单框架将带注释的对象序列化为 xml。一切正常,除了序列化时框架将所有出现的转换"为"
"
"
我怎样才能避免这种情况?
另外我怎样才能摆脱压痕?
xml 不就是要这样做的吗?我不知道禁用此功能的任何选项。但作为一种解决方法,您可以实现 a Transform,它(未)转义您的 quoutes。
Transform
编辑:可能的org.simpleframework.xml.stream.Formatter课程可以帮助你。这将转义这些序列。但不确定您是否可以按代码自定义它,或者您必须在源代码级别工作。
org.simpleframework.xml.stream.Formatter
禁用缩进:
Serializer ser = new Persister(new Format(0));
将缩进计数设置为 0。
请看Format。
Format