当前位置: 代码迷 >> J2SE >> Java是不是强制try语句了,该怎么处理
  详细解决方案

Java是不是强制try语句了,该怎么处理

热度:31   发布时间:2016-04-24 01:57:36.0
Java是不是强制try语句了
netbeans7.1
我用URL类提示我要用Try语句,写个System.in.read()也要用Try语句。疯了
Exception in thread "main" java.lang.RuntimeException: Uncompilable source code - unreported exception java.io.IOException; must be caught or declared to be thrown
at hashdos.HashDos.main

------解决方案--------------------
不想用try 把他抛出去 在方法后面写throws Exception {


建议使用try catch 块
------解决方案--------------------
must be caught or declared to be thrown,可以try可以throws
  相关解决方案