以字节的方式(写入,读取)文本,以字符的方式(写入,读取)文本

package v2ch01.textFile;

import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.io.Reader;
import java.io.UnsupportedEncodingException;
import java.util.Scanner;

import org.junit.Test;

public class FileTest {


	/**
	 * 以字符的方式写入文本
	 * @throws FileNotFoundException
	 * @throws UnsupportedEncodingException
	 */
	@Test
	public  void writeWenBen() throws FileNotFoundException, UnsupportedEncodingException {

		PrintWriter out = new PrintWriter(new File("e://test.txt"),"utf-8");
		out.write("abcde");
//		out.flush();
		out.close();
		
	}
	
	/**
	 * 以字符的方式读取文本
	 * @throws FileNotFoundException
	 */
	@Test
	public void readWenBen() throws FileNotFoundException{
		
		Scanner scanner = new Scanner(new FileInputStream(new File("e://test.txt")), "utf-8");
		while(scanner.hasNext())
			System.out.println(scanner.nextLine());
		
	}
	
	
	/**
	 * 以字节的方式写入文本
	 * @throws FileNotFoundException
	 */
	@Test
	public void writeByte() throws FileNotFoundException{
		
		OutputStream outputStream = new FileOutputStream(new File("e://test.txt"));
		String str = "I LOVE YOU EVE ";
		char[] ch = str.toCharArray();
//		char[] ch = {'a','b','c','d'};
		for (char c : ch) {
			try {
				outputStream.write(c);
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
		try {
			outputStream.close();
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
	
	/**
	 * 以字节的方式读取文本
	 */
	@Test
	public void readByte(){
		
		try {
			InputStream inputStream = new BufferedInputStream(new FileInputStream("e://test.txt"));
			int i=0;
			StringBuilder builder = new StringBuilder();
			while((i=inputStream.read())!=-1){
				
				
				builder.append((char)i);
			}
			System.out.println(builder.toString());
			inputStream.close();
		} catch (Exception e) {
			e.printStackTrace();
		}
		
	}
}


你可能感兴趣的:(以字节的方式(写入,读取)文本,以字符的方式(写入,读取)文本)