我又得到了這個問題...struts2數據切割字符串發送到jsp
所以我在我的Struts2應用程序中有String數據。這個數據是相當大的,從閱讀HTML代碼爲36KB數據:
BufferedReader reader = new BufferedReader(new FileReader("FILE.html"));
String readData;
while((readData = reader.readLine()) != null) {
fileData.append(new String(readData.getBytes(),"UTF-8"));
}
reader.close();
fileData.trimToSize();
this.data2display = fileData.toString();
this.setData2display(this.data2display.replaceAll("\\s+", " "));
我在JSP文件中顯示data2display,只有:
<s:property value="data2display" escape="false" escapeJavaScript="false" />
Aaaaaand ...這個數據是整個,而我」 m調試控制器,但是當我嘗試在jsp中顯示這個。我只有部分數據。我沒有任何錯誤/調試日誌。
任何想法如何檢查/修復它?
我的應用程序:(struts2,jsp)一切從appfuse-basic-struts原型。
謝謝,這正是我一直在尋找! ;) – tzim 2010-08-30 11:53:42
@tzim結合Google的開源之美:) – extraneon 2010-08-30 14:06:30