报表知识库
我要提问

在数据分隔符中使用转义字符

在导出txt文件的时候,可以通过textDataSeparator设置分隔符。但是在这里不能使用转义字符,例如:
<report:html name=”report1″
  reportFileName=”…”
  funcBarLocation=”top”
  needSaveAsText=”yes”
  textDataSeparator=”\n”
/>
这样导出的txt文件中包含的都是字符串”\n”,而不是期望的回车符。
要使用转义字符作数据分隔符,可以这样实现:
<%
  String sep = “\n”;
%>
<report:html name=”report1″
  reportFileName=”…”
  funcBarLocation=”top”
  needSaveAsText=”yes”
  textDataSeparator=”<%=sep %>”
/>