本文介紹了打印寫入器println:未創建新行的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我正在嘗試使用ApachePOI類將Outlook.MSG文件解碼為文本文件。
除了PrintWriter
的println
方法:它不會創建新行之外,其他一切都運行正常。
它只是將每個句子直接連接在一起。下面的代碼片段的結果是
"De: textPara: " iso "De: " "Para: "
我在幾臺機器上測試了該代碼:它在我本地的Tomcat安裝程序(Windows計算機)上運行,但在Solaris平臺上的Tomcat或WebLogic安裝程序上失敗。我以為和編碼算法有關,所以我用PrintStream
代替了Printwriter
,表示編碼是ISO-8859-1,但也不走運。
有什么想法嗎?
try {
byte [] msgByte = Base64.decodeBase64(msgBase64);
InputStream inputMsg = new ByteArrayInputStream(msgByte);
msg = new MAPIMessage(inputMsg);
/* 1. Transform MSG to TXT. */
try {
txtOut = new PrintWriter(outputMsg);
try {
String displayFrom = msg.getDisplayFrom();
txtOut.println("De: "+displayFrom);
} catch (ChunkNotFoundException e) {
_logger.info("Error extrayendo displayFrom: "+e);
}
try {
String displayTo = msg.getDisplayTo();
txtOut.println("Para: "+displayTo);
} catch (ChunkNotFoundException e) {
_logger.info("Error extrayendo displayTo: "+e);
}
} finally {
if(txtOut != null) {
txtOut.close();}
else {
_logger.error("No se ha podido parsear el mensaje.");
}
}
推薦答案
更改以下內容:
txtOut.print("De: "+displayFrom + "
");
txtOut.print("Para: "+displayTo + "
");
這與PrintWriter.println()如何根據操作系統生成Line break有關。對于Unix系統,是LF(
),對于Windows是CR+LF(
)。
請注意我是如何添加”
“表示CR+LF,并使用print()而不是println()。這樣生成的換行符與平臺無關。
您還可以將以下方法添加到類中以避免重復,只需調用此自定義的println(),而不是直接調用txtOut.print()。
private static final String LINE_SEPARATOR = "
";
public void println(String str) {
txtOut.print(str + LINE_SEPARATOR);
}
這樣您只需調用println()方法。
這篇關于打印寫入器println:未創建新行的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,