【发布时间】:2019-03-22 12:22:26
【问题描述】:
我需要通过 REST 将压缩后的 shapefile 上传到 GeoServer。 GeoServer 提供了一个示例 CURL command 来上传 shapefile zip,如下所示:
curl -v -u admin:geoserver -XPUT -H "Content-type: application/zip" --data-binary @data.zip http://172.16.17.86:9090/geoserver/rest/workspaces/IDIRA6/datastores/Murrindindi/file.shp
上面的 CURL 命令可以正常工作。但是,我想在 Java httpclient 中进行此上传。我是 Java 新手,但我编写了以下代码来实现这一点:
import java.io.FileInputStream;
import java.io.InputStream;
import org.apache.http.HttpEntity;
import org.apache.http.auth.AuthScope;
import org.apache.http.auth.UsernamePasswordCredentials;
import org.apache.http.client.CredentialsProvider;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpPut;
import org.apache.http.entity.ContentType;
import org.apache.http.entity.mime.MultipartEntityBuilder;
import org.apache.http.impl.client.BasicCredentialsProvider;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;
public class QuickStart {
public static void main(String[] args) throws Exception {
String file="data.zip";
CredentialsProvider credsProvider = new BasicCredentialsProvider();
credsProvider.setCredentials(
AuthScope.ANY,
new UsernamePasswordCredentials("admin", "geoserver"));
CloseableHttpClient httpclient = HttpClients.custom()
.setDefaultCredentialsProvider(credsProvider)
.build();
try {
HttpPut httpPut = new HttpPut("http://172.16.17.86:9090/geoserver/rest/workspaces/IDIRA6/datastores/Murrindindi/file.shp");
File file2 = new File("data.zip");
InputStream inputStream = new FileInputStream(file);
HttpEntity reqEntity = MultipartEntityBuilder.create()
.addPart("file", new FileBody(file2, ContentType.DEFAULT_BINARY))
.addBinaryBody("upstream", inputStream, ContentType.create("application/zip"), "data.zip")
.build();
httpPut.setEntity(reqEntity);
System.out.println("executing request " + httpPost.getRequestLine());
CloseableHttpResponse response = httpclient.execute(httpPut );
try {
System.out.println("----------------------------------------");
System.out.println(response.getStatusLine());
HttpEntity resEntity = response.getEntity();
if (resEntity != null) {
System.out.println("Response content length: " + resEntity.getContentLength());
}
EntityUtils.consume(resEntity);
} finally {
response.close();
}
} finally {
httpclient.close();
}
}
}
当我运行此代码时,我收到以下错误:
INFO: I/O exception (java.net.SocketException) caught when processing request to {}->http://172.16.17.86:9090:
Connection reset by peer: socket write error
Exception in thread "main" org.apache.http.client.ClientProtocolException
知道如何解决这个问题吗?我已经通过简单的身份验证测试了一个 POST,并且可以正常工作。但是,当我尝试上传 zip 文件时出现问题。
curl输出如下:
curl -v -u admin:geoserver -XPUT -H "Content-type: application/zip" --data-binary @Murrindindi_OvalCorrected.zip http://172.16.17.86:9090/geoserver/rest/workspaces/IDIRA6/datastores/Murrindindi/file.shp
* Trying 172.16.17.86...
* TCP_NODELAY set
* Connected to 172.16.17.86 (172.16.17.86) port 9090 (#0)
* Server auth using Basic with user 'shapeuploader'
> PUT /geoserver/rest/workspaces/IDIRA6/datastores/Murrindindi/file.shp HTTP/1.1
> Host: 172.16.17.86:9090
> Authorization: Basic c2hhcGV1cGxvYWRlcjo2OHJpOURwazdJR001bEo=
> User-Agent: curl/7.63.0
> Accept: */*
> Content-type: application/zip
> Content-Length: 7022252
> Expect: 100-continue
>
< HTTP/1.1 100
* We are completely uploaded and fine
< HTTP/1.1 201
< X-Frame-Options: SAMEORIGIN
< Content-Length: 0
< Date: Sat, 23 Mar 2019 23:04:27 GMT
* Connection #0 to host 172.16.17.86 left intact
【问题讨论】:
-
只是一个提示,但是 curl 命令使用 HTTP PUT 方法,而您的 Java 代码使用 HTTP POST。两者是不同的,您应该始终使用正确的。
-
谢谢,我修改了 Java 代码以使用 HttpPut,但仍然遇到同样的错误。 HttpPut httpPost = new HttpPut("172.16.17.86:9090/geoserver/rest/workspaces/IDIRA6/datastores/…);
-
第二个提示:我认为您应该使用
MultipartEntity类来发送文件。看这里stackoverflow.com/questions/6917105/…这个例子使用了post,但是你还是要使用put。 -
再次感谢,我通过添加两行代码来做到这一点:File file2 = new File("data.zip"); .addPart("file", new FileBody(file2)) 希望这是正确的。但我仍然得到同样的错误。
标签: java apache-httpclient-4.x geoserver