java题目,要求写代码。。。求高手指教

java定义一个对象引用并初始化为null,尝试用此引用调用方法。把这个电泳放在try-catch中以捕获异常,最后finally子句中输出"异常句子"。
请问这段代码要怎么写?题目都看不懂。。。求高手指教!

public class A {

public static void main(String[] args) {

//java定义一个对象引用并初始化为null,尝试用此引用调用方法。
//把这个电泳放在try-catch中以捕获异常,最后finally子句中输出"异常句子"。
String str = null;
String err = null;

try{
str.equals("abc");//此处必定发生空指针异常
}catch(NullPointerException nullExp){
err = "异常句子";//捕获异常
}finally{
System.out.println(err);//最终输出出错信息
}

}

}
温馨提示:内容为网友见解,仅供参考
第1个回答  2012-04-23
举个例子吧
Connection conn = null;
Statement stmt = null;
ResultSet rs = null;
try {
Class.forName("com.mysql.jdbc.Driver");
conn = DriverManager.getConnection("jdbc:mysql://localhost/mydata?user=root&password=root");
stmt = conn.createStatement();
rs = stmt.executeQuery("select * from dept");
while (rs.next()) {
System.out.print(rs.getString("deptno") + " ");
}
} catch (ClassNotFoundException e) {
e.printStackTrace();//将异常信息打印出来
} catch (SQLException e) {
e.printStackTrace();//将异常信息打印出来
} finally {
try {
if (rs != null) {
rs.close();
rs = null;
}
if (stmt != null) {
stmt.close();
stmt = null;
}
if (conn != null) {
conn.close();
conn = null;
}
} catch (SQLException e) {
e.printStackTrace();//将异常信息打印出来
}
}追问

引用调用方法是哪一步呢?
这到底是捕捉什么异常啊?我是新手。不好意思!

追答

前三行是定义变量,第6行是实例化conn,第8行就是调用它的createStatement()方法。第一处捕获的是驱动类未找到的异常,第二,三处是SQL语句的异常,还有什么不明白的吗?

本回答被提问者采纳
相似回答