Xml 如何在dbunit数据集中插入换行符

Xml 如何在dbunit数据集中插入换行符,xml,dataset,dbunit,Xml,Dataset,Dbunit,如何在dbunit数据集中插入换行符?像这样: <user id="1" story="first line second line third line"/> 如果我这样做的话,db中的字段故事只显示为除以空格,但我需要换行符。Upps,我找到了解决方案: <user id="1" story="first line&#13;&#10;second line&#13;&#10;third line"

如何在dbunit数据集中插入换行符?像这样:

    <user id="1" 
story="first line
       second line
       third line"/>


如果我这样做的话,db中的字段故事只显示为除以空格,但我需要换行符。

Upps,我找到了解决方案:

<user id="1" 
story="first line&#13;&#10;second line&#13;&#10;third line"/>

谢谢,这正是我需要的!