转换流OutputStreamWriter的使用

OutputStreamWriter(OutputStream out):根据默认编码把字节流的数据转换为字符流
OutputStreamWriter(OutputStream out,String charsetName):指定编码把字节流转换为字符流
参数为OutputStream,由于它是抽象类,所以要用子类对象来做

把字节流转换为字符流:

 字符流=字节流+编码表
ic static void main(String[] args) throws IOException{
		//创建对象
		OutputStreamWriter osw=new OutputStreamWriter(new FileOutputStream("d.txt"));
		
		//写数据
		osw.write("中国");

		//释放资源
		osw.close();

你可能感兴趣的:(Java)