java读取文件和写入文件的简单代码

程序首先将一个字符串写入指定文件,然后从另一个文件读出文件内容输出在屏幕。

程序代码如下:

 

import java.io.*;

public class ReadWrite {

	public void writeFile() {
		String str = "this  is a program"; // 要写入的内容
		try {
			FileOutputStream out = new FileOutputStream("d:/程序/ReadWriteshuchu.txt"); // 输出文件路径
			out.write(str.getBytes());
			out.close();
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

	public void readFile() {
		try {
			FileInputStream in = new FileInputStream("d:/程序/ceshi.txt"); // 读取文件路径
			byte bs[] = new byte[in.available()];
			in.read(bs);
			System.out.println("file content=\n" + new String(bs));
			in.close();
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

	public static void main(String[] args) {
		ReadWrite t = new ReadWrite();
		t.readFile();
		t.writeFile();
	}
}

 

程序运行之后t.writeFile()会将D盘的程序文件夹下的ceshi.txt的内容输出到屏幕;t.writeFile()会在D盘的程序文件夹下新建一个名为ReadWriteshuchu.txt的文件,并将this  is a program写入文件里面。

 

你可能感兴趣的:(java,exception,String,Class,import,byte)