txt檔案的讀取:
public static void main(string args)
system.out.println("一共行數=" + i);
/* 寫入txt檔案 方法一*/
file file = new file("g:\\aaa/bbb/ceshi.txt"); // 相對路徑,如果沒有則要建立乙個新的output。txt檔案
outputstream out = new fileoutputstream(file);
string str = "寫入檔案\r\n另起一行。";
byte databytes = str.getbytes("utf-8");
out.write(databytes); // \r\n即為換行
out.flush(); // 把快取區內容壓入檔案
out.close(); // 最後記得關閉檔案
/* 寫入txt檔案 方法二*/
file writename = new file("g:\\aaa/bbb/output.txt"); // 相對路徑,如果沒有則要建立乙個新的output。txt檔案
writename.createnewfile(); // 建立新檔案
bufferedwriter outs = new bufferedwriter(new filewriter(writename));
outs.write("我會寫入檔案啦\r\n"); // \r\n即為換行
outs.flush(); // 把快取區內容壓入檔案
outs.close(); // 最後記得關閉檔案
} catch (exception e)
}
C 寫入txt 檔案
filestream fs new filestream c s.txt filemode.create,fileaccess.write streamwriter sw new streamwriter fs sw.basestream.seek 0,seekorigin.begin for in...
PHP寫入txt檔案
myfiletoread fopen txt readme.txt r or die unable to open file myfileread fread myfiletoread,20 myfiletowrite fopen txt writeme.txt a or die unable to...
java寫入txt檔案
用另乙個構造方法filewriter filewriter new filewriter c result.txt true true代表追加 同理 bufferedwriter writer new bufferedwriter new filewriter new file c result.t...