Discussion:
[問題] 有關檔案處理的問題??
(时间太久无法回复)
火焰神兵
2006-12-14 03:47:21 UTC
Permalink
我剛剛寫了個小程式

是有關檔案處理的問題

就是我在.java檔案內已經寫了換行\n

但是輸出到.txt檔時卻不會換行

這是我的程式

import java.io.*;

public class qq
{
public static void main (String[] args) throws Exception
{
String file = "qq.txt";
String str1 = "123123\n";
String str2 = "abcabc\n";
BufferedWriter output = new BufferedWriter(new FileWriter(file));

output.write(str1);
output.write(str2);
output.close();
}
}

而.txt檔內卻是顯示123123 abcabc

並沒有換行

請問我哪裡出了問題???

書上說他會顯示為兩行文字阿???怎麼會沒有呢??

請教各位大大QQ

--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 140.134.20.147
火焰神兵
2006-12-14 03:56:52 UTC
Permalink
※ 引述《qrtt1 (愚人)》之銘言:
: ※ 引述《LEOYYYY (火焰神兵)》之銘言:
: : 我剛剛寫了個小程式
: : 是有關檔案處理的問題
: : 就是我在.java檔案內已經寫了換行\n
: : 但是輸出到.txt檔時卻不會換行
: : 這是我的程式
: see also:
: ● 1 10/31 ufjl1785 □ [問題] \n輸出到檔案之後...
: 2 10/31 PsMonkey R: [問題] \n輸出到檔案之後...
: 3 11/01 ufjl1785 R: [問題] \n輸出到檔案之後...
: 4 11/01 tkcn R: [問題] \n輸出到檔案之後...
: 5 11/01 ufjl1785 R: [問題] \n輸出到檔案之後...
: 6 10/31 qrtt1. R: [問題] \n輸出到檔案之後...
: 7 11/01 ufjl1785 R: [問題] \n輸出到檔案之後...
: 8 11/01 PsMonkey R: [問題] \n輸出到檔案之後..
感謝 等等自D

因為不能推文

所以先感謝後自D ^^"

--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 140.134.20.147

继续阅读narkive:
Loading...