Re: [問題] 請問檔案的存取~

看板java作者 (骨頭)時間18年前 (2006/03/07 21:07), 編輯推噓0(000)
留言0則, 0人參與, 最新討論串6/6 (看更多)
※ 引述《KeeperOf7Key (七把鑰匙的主人)》之銘言: : ※ 引述《qrtt1 (thinking in java)》之銘言: : : 文字檔請愛用FileWriter & FileReader :) : 可以再說的詳細一點點嗎^^" : 我只會用InputStreamReader而已~~ : 而且比較想知道如何一行接著一行寫入一個檔案而不是整個檔案覆蓋過去.... 如果是文字檔的話 FileWriter fw=new FileWriter("檔名.txt",true); ^^^^ false就是複寫(overwrite) true是附加(append) fw.write("內容 \r\n"); ^^^^^^換行 fw.close(); 至於讀取的話 BufferedReader input=new BufferedReader(new FileReader("檔名.txt")); while(input.ready()){ input.readLine(); //一次讀一行 } input.close(); 其他的延伸用法 自己翻書或看API比較快...- -;; 等到你能看到不熟的Class Name就去翻API,能看API知道它的用法, 這些問題就難不倒你了... : 表達不是很清楚,還麻煩幫忙啦!多謝m(_ _)m : 另外給板大…右上角的是移位碼:P -- String temp="relax"; | Life just like programing while(buringlife) String.forgot(temp); | to be right or wrong while(sleeping) brain.setMemoryOut(); | need not to say stack.push(life.running); | the complier will stack.push(scouting.buck()); | answer your life stack.push(bowling.pratice()); | Bone everything -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 140.138.240.58
文章代碼(AID): #143OM3y2 (java)
文章代碼(AID): #143OM3y2 (java)