Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
xml ドキュメントから配列に解析しています。私のxmlドキュメントには、次の形式で表記された改行がいくつかあります。
arraylist を sysout すると、Eclipse コンソールに改行が正しく表示されます。しかし、その変数に実際に保存されているものを表示することは何とか可能ですか?
例:
sysout(myarray[1]);
現在の出力:
xyz xyz
必要な出力:(またはそのようなもの)
xyz\n\nxyz
使用できます
string.replace("\n", "\\n");