AppEngine - 使用HTTP将文件发送到blobstore

时间:2011-01-10 18:25:50

标签: google-app-engine http blobstore

我正在尝试使用http请求将文件发送到blobstore。

首先我做了一个按钮来调用createUploadUrl来获取上传网址。

然后我做了一个客户:

HttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(URL_FROM_CREATEUPLOADURL);

httpPost.setEntity(new StringEntity("value1"));
HttpResponse httpResponse = httpClient.execute(httpPost);

但我有两个问题:

  • 在开发模式下:当我运行客户端时,它首先响应“必须调用set * BlobStorage()中的一个。”

  • 如果我上传应用程序:每次调用时网址都会更改,因此当我运行客户端时,它会响应“HTTP / 1.1 500内部服务器错误”

我做错了什么?

2 个答案:

答案 0 :(得分:5)

听起来您正在尝试对单个上传网址进行硬编码。你不能这样做 - 你需要为你想要上传的每个文件生成一个新文件。

您还需要确保将文件作为多部分邮件上传,而不是使用formencoding或raw body。我不熟悉Java API,但看起来你正在设置请求的原始主体。

答案 1 :(得分:5)

显然该实体必须是MultiPartEntity。

这是获取网址的客户端代码:

HttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(myDomain/mayServlet);
HttpResponse httpResponse = httpClient.execute(httpPost);
Header[] headers = httpResponse.getHeaders(myHeader);
for (int i = 0; i < headers.length; i++) {
Header header = headers[i];
if(header.getName().equals(myHeader))
uploadUrl = header.getValue();

这是返回网址的服务器代码:

BlobstoreService blobstoreService = BlobstoreServiceFactory.getBlobstoreService();
String uploadUrl = blobstoreService.createUploadUrl(requestHandlerServlet);
resp.addHeader("uploadUrl", uploadUrl);

这是客户端上传代码:

HttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(uploadUrl);
MultipartEntity httpEntity = new MultipartEntity();
ContentBody contentBody = new FileBody(new File("filePath/fileName"));
httpEntity.addPart("fileKey", contentBody);
httpPost.setEntity(httpEntity);
HttpResponse httpResponse = httpClient.execute(httpPost);

这么容易...... :(