Java:为什么不在第二个方法catch块中捕获异常

时间:2012-01-10 11:56:07

标签: java

我有这个方法调用下面的方法,我的目的是为要连接的URL提供错误的端口号。 但令我惊讶的是,产生的异常是在第一个方法捕获块中捕获的 为什么不在executeData方法的catch块中处理它?<​​/ p>

**1st Method** 
public APIResponse execute(Request request, Class<? extends Response> responseClass) {
        try {
        String xmlResponse = executeData(request);
                  // some code
        return response;
        }
        catch (Exception ex) {

            return new Response(ErrorCode.SYSTEM_ERROR);
        }
    }

2nd Method
public String executeData(Request request) throws IOException {
        URL url = null;
        URLConnection urlc = null;
        try {
            url = new URL("http://localhost:80870/");
            urlc = url.openConnection();

        }
        catch (Exception ex) {
        ex.printStackTrace();
**// This is not being executed .**
        }

                           // Some code
                   // Some code
        return xmlResponse;
    }

2 个答案:

答案 0 :(得分:1)

这可能是因为你的行

// some code

产生另一个被捕获的异常。你的第二种方法没有抛出任何异常,我认为没有错。

connection.connect();

将抛出异常。

您还可以检查状态:

int responseCode = connection.getResponseCode();
if (responseCode != 200) {
    // Not OK.
}

答案 1 :(得分:0)

我猜在

中发生异常
  

//一些代码     //一些代码

executeData

中的阻止后