基礎知識點複習——輸入輸出
阿新 • • 發佈:2018-12-26
輸入輸出
一、file類
1.常用方法:
file.exists()判斷檔案是否存在
file.isFile()判斷是否是檔案
file.isDirectory()判斷是否是目錄
file.getPath()得到相對路徑
file.getAbsolutePath()得到絕對路徑
file.getName()得到檔名稱
file.delete()刪除指定檔案
file.createNewFile()建立新檔案
二、輸入輸出流
InputStreamReader輸入
package file;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
public class TestFile {
public static void main(String[] args) {
File file = new File("d:/a.txt");
FileInputStream f = null;
try {
f = new FileInputStream(file);
int a;
while((a=f.read())!=-1){
System.out.print((char)a);
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally{
try {
f.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
OutputStreamWriter 輸出
package file;
import java.io.*;
public class OutputTest {
public static void main(String[] args) {
File file = new File("D:/b.txt");
FileOutputStream fo = null;
try {
fo = new FileOutputStream(file);
byte[] b = new byte[10];
b[0] = 'a';
b[1] = 'b';
fo.write(b);
} catch (Exception e) {
e.printStackTrace();
} finally{
try {
fo.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
Reader 讀取
package file;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import javax.swing.text.AbstractDocument.BranchElement;
public class ReaderTest {
public static void main(String[] args) throws Exception {
FileReader fr = null;
BufferedReader bf = null;
try {
fr = new FileReader("D:/a.txt");//要讀取的檔案路徑
bf = new BufferedReader(fr);//講檔案中的內容放在緩衝區中
String line;//定義一個變數,每次讀取一行,儲存在這個變數中
while((line=bf.readLine())!=null){//每次讀取一行,知道讀取沒有內容
System.out.println(line);//列印讀取的一行資料
}
} catch (Exception e) {
e.printStackTrace();
}finally{//關閉資源
bf.close();
fr.close();
}
}
}
writer
package file;
import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.IOException;
public class WriterTest {
public static void main(String[] args) {
FileWriter fw = null;
BufferedWriter bw = null;
try {
fw = new FileWriter("D:/c.txt");
bw = new BufferedWriter(fw);
bw.write("我是小黑,但是我就是很黑");
bw.newLine();//換行
bw.write("我是小白,但是我就是不白");
} catch (Exception e) {
e.printStackTrace();
}finally{
try {
bw.close();
fw.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
一、file類
1.常用方法:
file.exists()判斷檔案是否存在
file.isFile()判斷是否是檔案
file.isDirectory()判斷是否是目錄
file.getPath()得到相對路徑
file.getAbsolutePath()得到絕對路徑
file.getName()得到檔名稱
file.delete()刪除指定檔案
file.createNewFile()建立新檔案
二、輸入輸出流
InputStreamReader輸入
package file;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
public class TestFile {
public static void main(String[] args) {
File file = new File("d:/a.txt");
FileInputStream f = null;
try {
f = new FileInputStream(file);
int a;
while((a=f.read())!=-1){
System.out.print((char)a);
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally{
try {
f.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
OutputStreamWriter 輸出
package file;
import java.io.*;
public class OutputTest {
public static void main(String[] args) {
File file = new File("D:/b.txt");
FileOutputStream fo = null;
try {
fo = new FileOutputStream(file);
byte[] b = new byte[10];
b[0] = 'a';
b[1] = 'b';
fo.write(b);
} catch (Exception e) {
e.printStackTrace();
} finally{
try {
fo.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
Reader 讀取
package file;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import javax.swing.text.AbstractDocument.BranchElement;
public class ReaderTest {
public static void main(String[] args) throws Exception {
FileReader fr = null;
BufferedReader bf = null;
try {
fr = new FileReader("D:/a.txt");//要讀取的檔案路徑
bf = new BufferedReader(fr);//講檔案中的內容放在緩衝區中
String line;//定義一個變數,每次讀取一行,儲存在這個變數中
while((line=bf.readLine())!=null){//每次讀取一行,知道讀取沒有內容
System.out.println(line);//列印讀取的一行資料
}
} catch (Exception e) {
e.printStackTrace();
}finally{//關閉資源
bf.close();
fr.close();
}
}
}
writer
package file;
import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.IOException;
public class WriterTest {
public static void main(String[] args) {
FileWriter fw = null;
BufferedWriter bw = null;
try {
fw = new FileWriter("D:/c.txt");
bw = new BufferedWriter(fw);
bw.write("我是小黑,但是我就是很黑");
bw.newLine();//換行
bw.write("我是小白,但是我就是不白");
} catch (Exception e) {
e.printStackTrace();
}finally{
try {
bw.close();
fw.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}