处理流之二:转换流
- 转换流:属于字符流
InputStreamReader
:将一个字节的输入流转换为字符的输入流
OutputStreamWriter
:将一个字符的输出流转换为字节的输出流 - 转换流作用:提供字节流和字符流之间的转换
-
解码:字节、字节数组 ----> 字符数组、字符串
编码:字符数组、字符串---->字节、字节数组 -
字符集:
①ASCII:美国标准信息交换码,用一个字节的7位可以表示。
②ISO8859-1:拉丁码表。欧洲码表, 用一个字节的8位表示。
③GB2312:中国的中文编码表。最多两个字节编码所有字符
④GBK:中国的中文编码表升级,融合了更多的中文文字符号。最多两个字节编码
⑤ Unicode:国际标准码,融合了目前人类使用的所有字符。为每个字符分配唯一的字符码。所有的文字都用两个字节来表示。
⑥ UTF-8:变长的编码方式,可用1-4个字节来表示一个字符。
1、InputStreamReader的使用:实现字节的输入流到字符的输入流的转换
package java1;
import org.junit.Test;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;
public class InputStreamReaderTest {
@Test
public void test(){
InputStreamReader isr = null;
try {
FileInputStream fis = new FileInputStream("eclipse快捷键.txt");
// InputStreamReader isr = new InputStreamReader(fis);//使用系统默认的字符集
//参数2指明了字符集,具体使用哪个字符集,取决于"eclipse快捷键.txt"文件保存时使用的字符集
isr = new InputStreamReader(fis,"UTF-8");
char[] cbuf = new char[10];
int len;
while ((len = isr.read(cbuf)) != -1){
String str = new String(cbuf,0,len);
System.out.println(str);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
if(isr != null)
try {
isr.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
2、转换流实现文件的读入和写出(结合InputStreamReader和OutputStreamWriter)
@Test
public void test1() throws IOException {//此处使用抛异常纯粹为了方便
FileInputStream fis = new FileInputStream("eclipse快捷键.txt");
FileOutputStream fos = new FileOutputStream("eclipse快捷键_gbk.txt");
InputStreamReader isr = new InputStreamReader(fis,"utf-8");
OutputStreamWriter osw = new OutputStreamWriter(fos,"gbk");
int len;
char[] cbuf = new char[20];
while ((len = isr.read(cbuf)) != -1){
osw.write(cbuf,0,len);
}
isr.close();
osw.close();
网友评论