Я пытаюсь отправить запрос http из приложения Android в сервлет Java, размещенный на Tomcat.приложение отправляет некоторые текстовые и графические данные сервлету, но сервлет, похоже, не видит данные многоэлементной формы.У меня было небольшое руководство из этого урока, а также помощь IRC в подтверждении входящих данных: http://blog.tacticalnuclearstrike.com/2010/01/using-multipartentity-in-android-applications/
Код Android:
//// libs: httpclient-4.1.3, httpcore-4.1.4, httpmime-4.1.3, apache-mime4j-core-0.7.2
HttpPost httpPost = new HttpPost(mURI);
MultipartEntity requestEntity = new MultipartEntity();
requestEntity.addPart("text", new StringBody("test text"));
requestEntity.addPart("image", new ByteArrayBody(mImage, "image"));
httpPost.setEntity(requestEntity);
HttpResponse httpResponse = mHttpClient.execute(httpPost);
код сервлета:
@Override
public void doPost(HttpServletRequest request, HttpServletResponse response) {
try {
response.setContentType("text/html");
PrintWriter out = response.getWriter();
File file = new File(getServletContext().getRealPath("/") + File.separator + "WEB-INF" + File.separator + "sms-mobile-image.jpg");
file.createNewFile();
Writer outfile = new OutputStreamWriter(new FileOutputStream(file));
List<Part> formData = new ArrayList(request.getParts());
if(formData.size()>0)
System.out.println(formData.get(0).getName());
else
System.out.println("no form data found");
} catch(Exception e) {
System.out.println(e.toString());
}
}
Фактические данные отправлены (подтверждено Wireshark):
POST /mobile-image/ProcessRequest HTTP/1.1
Content-Length: 921897
Content-Type: multipart/form-data; boundary=ZiB5ibYqpxux_mP6HeswY9B__17vOLCVvay01
Host: 192.168.1.167:8080
Connection: Keep-Alive
--ZiB5ibYqpxux_mP6HeswY9B__17vOLCVvay01
Content-Disposition: form-data; name="text"
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 8bit
test text
--ZiB5ibYqpxux_mP6HeswY9B__17vOLCVvay01
Content-Disposition: form-data; name="image"; filename="image"
Content-Type: application/octet-stream
Content-Transfer-Encoding: binary
[image-data-here]
--ZiB5ibYqpxux_mP6HeswY9B__17vOLCVvay01--
output:
no form data found
было предложено просмотреть конфигурацию web.xml, так что это будет мой следующий шаг, но я чувствую себя здесь растерянно.разве так не должно работать?