IDEA try-with-resources报错 AutoCloseable。
try (HttpPost post = new HttpPost(url)){
...
}catch(... | ... ){
}
编辑器提示:不兼容的类型: try-with-resources 不适用于变量类型
原因:用的HttpPost 没有实现closeable,不支持。编译器自动帮我们补全的是close(), HttpPost没有该方法。 如果要测试该写法可以用 :CloseableHttpClient 、BufferedInputStream 之类的,最后反编译看看。
try (CloseableHttpClient client =HttpClients.createDefault();){
...
}...