黑马程序员技术交流社区
标题:
转换流
[打印本页]
作者:
李云贵
时间:
2014-7-24 09:15
标题:
转换流
转换流:
InputStreamReader :字节到字符的桥梁。编码。
OutputStreamWriter:字符到字节的桥梁。解码。
什么时候使用转换流呢?
1,源或者目的对应的设备是字节流,但操作的却是文本数据,可使用转换作为桥梁。提高对文本操作的便捷。
2,一旦操作文本涉及到具体的
指定编码表
时,必须使用转换流 。
将一个中文字符串数据按照指定的编码表写入到一个文本文件中.
既然需求中明确了指定编码表。那就不可以使用FileWriter,因为FileWriter内部是使用默认的本地码表。
只能使用其父类。OutputStreamWriter.
OutputStreamWriter接收一个字节输出流对象,既然是操作文件,那么该对象应该是FileOutputStream
OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream("a.txt"),charsetName);
流操作规律:
之所以要弄清楚这个规律,是因为流对象太多,开发时不知道用哪个对象合适。
想要知道开发时用到哪些对象。只要通过四个明确即可。
1,明确目的
输入:InputStream Reader
输出:OutputStream Writer
2,明确
数据是否是纯文本数据
。
是纯文本:字符流 Reader,
Writer
非纯文本:字节流 InputStream,OutputStream
到这里,就可以明确需求中具体要使用哪个体系。
3,明确
具体的设备
。
源设备:
硬盘:File (纯文本字符,非纯文本字节)
键盘:System.in
(字节)
控制台:System.out(字节)
内存:数组
网络:Socket流
4,是否需要其他额外功能。
1,高效(缓冲区)。
就加上Buffer.
2,转换。
获取用户键盘录入的数据,如果用户输入的是over,结束键盘录入。
思路:
因为键盘录入只读取一个字节,要判断是否是over,需要将读取到的字节拼成字符串。那就需要一个容器。StringBuilder.在用户回车之前将录入的数据变成字符串判断即可。
public static void readKey2() throws IOException {
//1,创建容器。
StringBuilder sb = new StringBuilder();
//2,获取键盘读取流。
InputStream in = System.in;
//3,定义变量记录读取到的字节,并循环获取。
int ch = 0;
while((ch=in.read())!=-1){
// 在存储之前需要判断是否是换行标记 ,因为换行标记不存储。
if(ch=='\r')
continue;
if(ch=='\n'){
String temp = sb.toString();
if("over".equals(temp))
break;
System.out.println(temp.toUpperCase());
sb.delete(0, sb.length());
}
else
//将读取到的字节存储到StringBuilder中。
sb.append((char)ch);
// System.out.println(ch);
}
}
public static void readKey() throws IOException {
InputStream in = System.in;
int ch = in.read();//阻塞式方法。
System.out.println(ch);
int ch1 = in.read();//阻塞式方法。
System.out.println(ch1);
int ch2 = in.read();//阻塞式方法。
System.out.println(ch2);
// in.close();
// InputStream in2 = System.in;
// int ch3 = in2.read();
}
}
加上转换流获取键盘输入的方法
InputStream in = System.in;
InputStreamReader isr = new InputStreamReader(in);
BufferedReader bufr = new BufferedReader(isr);
OutputStream out = System.out;
OutputStreamWriter osw = new OutputStreamWriter(out);
BufferedWriter bufw = new BufferedWriter(osw);
String line = null;
while((line=bufr.readLine())!=null){
if("over".equals(line))
break;
bufw.write(line.toUpperCase());
bufw.newLine();
bufw.flush();
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2