IO异常处理
Posted 暗影蔽日
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IO异常处理相关的知识,希望对你有一定的参考价值。
import java.io.*; public class StandardIO { public static void main(String[] args) { try {/*先使用System.in构造InputStreamReader,再构造BufferedReader*/ BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in)); System.out.print("Enter a string:"); System.out.println(stdin.readLine()); System.out.print("Enter an integer:"); int number1 = Integer.parseInt(stdin.readLine());/*将字符串解析为带符号的十进制整数*/ System.out.println(number1); System.out.print("Enter a double:"); double number2 = Double.parseDouble(stdin.readLine()); System.out.println(number2); } catch(IOException e){System.err.println("IOException");} } }
//Char_Ascii.java public class Char_Ascii { public static void main(String[] args) { int ascii_value; char char_value = ‘0‘; for(int i = 1;i<=10;i++) { char_value = (char)System.in.read(); ascii_value = (int)char_value; System.out.println(char_value + "<== =>" + ascii_value); } } }
在Char_Ascii.java中编译会出现未捕获的IO异常错误
java中System.out和System.err 已被封装成PrintStream对象,因此具有强大的输出的功能,但System.in却仍然是原始的InutStream,需要在使用的时候进行封装
以上是关于IO异常处理的主要内容,如果未能解决你的问题,请参考以下文章
PCL异常处理:pcl 1.8.13rdpartyoostincludeoost-1_64oost ypeofmsvc ypeof_impl.hpp(125): error(代码片段