Androidクライアントはサーバーにリクエストを送信します。
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://test.com/test");
HttpResponse response = httpclient.execute(httppost);
その後、以下のようなサーバーからの応答を受信しました
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Date: Wed, 26 Sep 2012 10:59:35 GMT
Content-Type: multipart/form-data; type="image/jpeg"; boundary="simple_boundary"; start="<image>"; start-info="image/jpeg"
Transfer-Encoding: chunked
2000
--simple_boundary
Content-Type: image/jpeg
Content-Transfer-Encoding: binary
Content-ID: <image>
......JPEG Binary Code Here.....
--simple_boundary
応答からImage(binary)を取得するにはどうすればよいですか。
InputStream is = response.getEntity().getContent();
(InputStream)isには、境界およびコンテンツ情報も含まれています。
--simple_boundary
Content-Type: image/jpeg
Content-Transfer-Encoding: binary
Content-ID: <image>
......JPEG Binary Code Here.....
--simple_boundary
どうすれば純粋な画像バイナリデータを取得できますか。そしてそれは可能ですか?