救命。获取异常执行PostMethod.getStatusCode()!

时间:2010-07-09 05:56:48

标签: java nullpointerexception apache-commons-httpclient

无法弄清楚为什么我在这里得到Null指针:System.out.println(method.getStatusCode()); !? 方法初始化并成功执行! 有任何想法吗? 这里有示例代码。我正在使用commons-httpclient-3.1.jar

            PostMethod = new PostMethod(url);

        LogInHelper.logRequest(httpClient, method);

        try {
            httpClient.executeMethod(method);
            method.getResponseBodyAsString();
        } catch (HttpException e) {
            LOG.error("@getSessionId() error connecting to " + url, e);

        } catch (IOException e) {
            LOG.error("@getSessionId() error connecting to " + url, e);

        }

        LogInHelper.logResponse(method);

        System.out.println(method.getStatusCode());

1 个答案:

答案 0 :(得分:1)

在这种情况下,清理并重新编译整个项目。