转换流:属于字符流
InputStreamReader:将一个字节的输入流转换为字符的输入流
OutputStreamWriter:将一个字符的输出流转换为字节的输出流
作用:提供字节流和字符流之间的转换
编码: 字符数组,字符 -------> 字节,字节数组
解码:字节,字节数组--------->字符数组,字符
综合使用
Sysyetm.in
:标准的输入流,默认从键盘输入
System.out
:标准的输出流,默认从控制台输出
System类的setIn(InputStream)
/ setOut(PrintStream)
方式重新制定输入输出的流
从键盘输入字符串,要求将读取到的整行字符串转换成大写输出,然后继续进行输入操作
直至输入”e“ 或 exit时,推出
public static void main(String[] args) {
BufferedReader br = null;
try {
InputStreamReader isr = new InputStreamReader(System.in);
?
br = new BufferedReader(isr);
?
while (true){
System.out.println("请输入字符:");
String data = br.readLine();
if("e".equalsIgnoreCase(data) || "exit".equalsIgnoreCase(data)){
System.out.println("程序结束");
break;
}
String upperCase = data.toUpperCase();
System.out.println(upperCase);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
br.close();
} catch (IOException e) {
e.printStackTrace();
}
}
?
}
?
实现将基本数据类型的数据格式转化为字符串输出 打印流:PrintStream
和PrintWriter
提供了一系列重载的print()和println()方法,用于多种数据类型的输出
PrintStream
和PrintWriter
的输出不会抛出IOException异常 PrintStream
和PrintWriter
有自动flush功能 PrintStream
打印的所有字符都使用平台的默认字符编码转换为字节。在需要写入字符而不是写入字节的情况下,应该使用PrintWriter
类。
System.out
返回的是PrintStream
的实例
DataInputStream
和 DataOutputStream
作用:用于读取或写出基本数据类型的变量
将内存中的字符串,基本数据类型的变量写出到文件中
将文件中存储的基本数据类型变量和字符串读取到内存中,保存到变量中
原文:https://www.cnblogs.com/flypigggg/p/14642135.html