Retain the
during xml marshalling

不问归期 提交于 2019-12-11 14:28:38

问题


I am generating the xml by marshalling the xsd and I have xsl-fo to generate the pdf. I have a description field which has to be broken down to new lines.Something similar to what is in this thread Inserting a line break in a PDF generated from XSL FO using <xsl:value-of>

This is my code to marshall

JAXBContext context = JAXBContext.newInstance(List.class);
            Marshaller m = context.createMarshaller();
            m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
            m.setProperty("com.sun.xml.bind.xmlDeclaration", Boolean.FALSE);
            m.marshal(OrderList, stream);
            StringWriter sw = new StringWriter();
            m.marshal(OrderList, sw);
            String val = sw.toString();
            System.out.println(val);

When I marshall, generated xml doesn't retain &#xA; instead it adds &amp;#xA; and the result is something like this <description>REPAIR CAB DOOR&amp;#xA;REPAIR &amp;#xA;</description>. If I don't have &#xA in the xml I can't create a line break in my pdf.


回答1:


Ok, I' guessing here (albeit somewhat educated). Whatever your input is to the generation of the <description> element, it should not contain &#xA, but rather just '\n'. I.e., instead of:

"This is a List:&#xA;List item 1&#xA;List item 2&#xA;List item 3&#xA;List item 4"

it shoudl be

"This is a List:\nList item 1\nList item 2\nList item 3\nList item 4"


来源:https://stackoverflow.com/questions/13731652/retain-the-xa-during-xml-marshalling

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!