帮助。执行 PostMethod.getStatusCode() 时出现异常!
无法弄清楚为什么我在这里得到空指针: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());
Couldn't figure out why I'm getting Null pointer here : System.out.println(method.getStatusCode()); !?
method initialized and successfully executed!
Any ideas?
Sample code here. I'm using 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());
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这种情况下,清理并重新编译整个项目会有所帮助。
Cleaning and recompile whole project helped in this case.