当前位置: 技术问答>java相关
非常简单,错在什么地方呀???I/O
来源: 互联网 发布时间:2015-10-24
本文导语: import java.io.*; public class IO { public static void main(String[] args) { int ch; System.out.println("please enter your char"); ch=System.in.read(); System.out.println((char)ch); } } IO.java:8: unreported exception ...
import java.io.*;
public class IO
{
public static void main(String[] args)
{
int ch;
System.out.println("please enter your char");
ch=System.in.read();
System.out.println((char)ch);
}
}
IO.java:8: unreported exception java.io.IOException; must be caught or declared
to be thrown
ch=System.in.read();
^
public class IO
{
public static void main(String[] args)
{
int ch;
System.out.println("please enter your char");
ch=System.in.read();
System.out.println((char)ch);
}
}
IO.java:8: unreported exception java.io.IOException; must be caught or declared
to be thrown
ch=System.in.read();
^
|
需要try & catch
|
凡是调用了会抛出异常的方法都要用try{}catch(){}捕获这个异常
|
import java.io.*;
public class IO
{
public static void main(String[] args) throws IOException
{
int ch;
System.out.println("please enter your char");
ch=System.in.read();
System.out.println((char)ch);
}
}
public class IO
{
public static void main(String[] args) throws IOException
{
int ch;
System.out.println("please enter your char");
ch=System.in.read();
System.out.println((char)ch);
}
}
|
提示你必須捕捉異常
try
{
ch = System.in.read();
}
catch(Exception ex)
try
{
ch = System.in.read();
}
catch(Exception ex)
|
Agree with aiur
|
import java.io.*;
public class IO
{
public static void main(String[] args)
{
int ch;
System.out.println("please enter your char");
try{
ch=System.in.read();
System.out.println((char)ch);
}catch(IOException e){
}
}
}
请捕获异常!!!
public class IO
{
public static void main(String[] args)
{
int ch;
System.out.println("please enter your char");
try{
ch=System.in.read();
System.out.println((char)ch);
}catch(IOException e){
}
}
}
请捕获异常!!!
|
请捕获异常!!!
|
try
{
}
catch
{
}
{
}
catch
{
}
|
up
|
来晚了!!!
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。