.txt で \n を使用すると、入力ストリーム文字列が改行されないのはなぜですか?
私はそれを読んでからTextViewに投稿しようとしていますが、新しい行に移動する代わりに\nが表示されます-.-十分に閉じます
try {
reader = new InputStreamReader(getAssets().open("koce_podatki.txt"),"UTF-8");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
BufferedReader br = new BufferedReader(reader);
for(int i=-1;i<position;i++){
try {
temp = "" + br.readLine();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}}
try {
reader.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
temp=temp.replaceAll("\n", "\n");
nov = temp.split("\\|");
for(int i=0;i<23;i++){
podatek.add(""+nov[i]);
}