- 相關(guān)推薦
java寫入文件的方法有哪些
java寫入文件的方法有哪些?下面百分網(wǎng)小編帶大家一起來看看詳細(xì)內(nèi)容,有需要的朋友們一起看看吧!想了解更多相關(guān)信息請持續(xù)關(guān)注我們應(yīng)屆畢業(yè)生考試網(wǎng)!
一,F(xiàn)ileWritter寫入文件
FileWritter, 字符流寫入字符到文件。默認(rèn)情況下,它會使用新的內(nèi)容取代所有現(xiàn)有的內(nèi)容,然而,當(dāng)指定一個(gè)true (布爾)值作為FileWritter構(gòu)造函數(shù)的第二個(gè)參數(shù),它會保留現(xiàn)有的內(nèi)容,并追加新內(nèi)容在文件的末尾。
1. 替換所有現(xiàn)有的內(nèi)容與新的內(nèi)容。
new FileWriter(file);2. 保留現(xiàn)有的內(nèi)容和附加在該文件的末尾的新內(nèi)容。
復(fù)制代碼 代碼如下:
new FileWriter(file,true);
追加文件示例
一個(gè)文本文件,命名為“javaio-appendfile.txt”,并包含以下內(nèi)容。
ABC Hello追加新內(nèi)容 new FileWriter(file,true)
復(fù)制代碼 代碼如下:
package com.yiibai.file;
import java.io.File;
import java.io.FileWriter;
import java.io.BufferedWriter;
import java.io.IOException;
public class AppendToFileExample
{
public static void main( String[] args )
{
try{
String data = " This content will append to the end of the file";
File file =new File("javaio-appendfile.txt");
//if file doesnt exists, then create it
if(!file.exists()){
file.createNewFile();
}
//true = append file
FileWriter fileWritter = new FileWriter(file.getName(),true);
BufferedWriter bufferWritter = new BufferedWriter(fileWritter);
bufferWritter.write(data);
bufferWritter.close();
System.out.println("Done");
}catch(IOException e){
e.printStackTrace();
}
}
}
結(jié)果
現(xiàn)在,文本文件“javaio-appendfile.txt”內(nèi)容更新如下:
ABC Hello This content will append to the end of the file
二,BufferedWriter寫入文件
緩沖字符(BufferedWriter )是一個(gè)字符流類來處理字符數(shù)據(jù)。不同于字節(jié)流(數(shù)據(jù)轉(zhuǎn)換成字節(jié)),你可以直接寫字符串,數(shù)組或字符數(shù)據(jù)保存到文件。
復(fù)制代碼 代碼如下:
package com.yiibai.iofile;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
public class WriteToFileExample {
public static void main(String[] args) {
try {
String content = "This is the content to write into file";
File file = new File("/users/mkyong/filename.txt");
// if file doesnt exists, then create it
if (!file.exists()) {
file.createNewFile();
}
FileWriter fw = new FileWriter(file.getAbsoluteFile());
BufferedWriter bw = new BufferedWriter(fw);
bw.write(content);
bw.close();
System.out.println("Done");
} catch (IOException e) {
e.printStackTrace();
}
}
}
三,F(xiàn)ileOutputStream寫入文件
文件輸出流是一種用于處理原始二進(jìn)制數(shù)據(jù)的字節(jié)流類。為了將數(shù)據(jù)寫入到文件中,必須將數(shù)據(jù)轉(zhuǎn)換為字節(jié),并保存到文件。請參閱下面的完整的例子。
復(fù)制代碼 代碼如下:
package com.yiibai.io;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
public class WriteFileExample {
public static void main(String[] args) {
FileOutputStream fop = null;
File file;
String content = "This is the text content";
try {
file = new File("c:/newfile.txt");
fop = new FileOutputStream(file);
// if file doesnt exists, then create it
if (!file.exists()) {
file.createNewFile();
}
// get the content in bytes
byte[] contentInBytes = content.getBytes();
fop.write(contentInBytes);
fop.flush();
fop.close();
System.out.println("Done");
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (fop != null) {
fop.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
//更新的JDK7例如,使用新的“嘗試資源關(guān)閉”的方法來輕松處理文件。
package com.yiibai.io;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
public class WriteFileExample {
public static void main(String[] args) {
File file = new File("c:/newfile.txt");
String content = "This is the text content";
try (FileOutputStream fop = new FileOutputStream(file)) {
// if file doesn't exists, then create it
if (!file.exists()) {
file.createNewFile();
}
// get the content in bytes
byte[] contentInBytes = content.getBytes();
fop.write(contentInBytes);
fop.flush();
fop.close();
System.out.println("Done");
} catch (IOException e) {
e.printStackTrace();
}
}
}
【java寫入文件的方法有哪些】相關(guān)文章:
Java寫入文件的方法05-24
java讀文件寫文件的方法06-24
Java讀取、寫入文件如何解決亂碼問題08-24
Java讀取郵件的方法有哪些05-31
java調(diào)用bat文件的方法08-09
java序列化的方法有哪些10-06
JAVA中終止線程的方法有哪些07-26