无法弄清楚为什么我在这里得到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());
答案 0 :(得分:1)
在这种情况下,清理并重新编译整个项目。