これは、Androidからファイルを投稿する簡単な方法です。
String url = "http://yourserver.com/upload.php";
File file = new File("myfileuri");
try {
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(url);
InputStreamEntity reqEntity = new InputStreamEntity(new FileInputStream(file), -1);
reqEntity.setContentType("binary/octet-stream");
reqEntity.setChunked(true); // Send in multiple parts if needed
httppost.setEntity(reqEntity);
HttpResponse response = httpclient.execute(httppost);
//Do something with response...
} catch (Exception e) {
e.printStackTrace();
}
私がやりたいのは、リクエストにPOST
変数をさらに追加することです。それ、どうやったら出来るの? POST
リクエストでプレーン文字列をアップロードするとき、URLEncodedFormEntity
を使用します。
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
一方、ファイルをアップロードするときは、InputStreamEntity
を使用します。
また、このファイルを$_FILES['myfilename']
に具体的にアップロードするにはどうすればよいですか?
あなたのためのいくつかの方法:
2つの投稿要求を行います。最初は画像ファイルを使用します。サーバーはイメージIDを返し、2番目の要求でこのIDにパラメーターを添付します。
または、「2リクエスト」ソリューションの代わりに、MultipartEntity
リクエストを使用できます。 詳細はこちらをご覧ください
1日過ごした後、見つかった loopj 。次のコードサンプルを使用できます。
//context: Activity context, Property: Custom class, replace with your pojo
public void postProperty(Context context,Property property){
// Creates a Async client.
AsyncHttpClient client = new AsyncHttpClient();
//New File
File files = new File(property.getImageUrl());
RequestParams params = new RequestParams();
try {
//"photos" is Name of the field to identify file on server
params.put("photos", files);
} catch (FileNotFoundException e) {
//TODO: Handle error
e.printStackTrace();
}
//TODO: Reaming body with id "property". prepareJson converts property class to Json string. Replace this with with your own method
params.put("property",prepareJson(property));
client.post(context, baseURL+"upload", params, new AsyncHttpResponseHandler() {
@Override
public void onFailure(int statusCode, Header[] headers, byte[] responseBody, Throwable error) {
System.out.print("Failed..");
}
@Override
public void onSuccess(int statusCode, Header[] headers, byte[] responseBody) {
System.out.print("Success..");
}
});
}
アプリからファイルをアップロードしたいので、ここにあなたのための良いチュートリアルがあります:
POST on Android。 を使用してHTTPサーバーにファイルをアップロードする
あなたも文字列をアップロードしたい場合、私はあなたがすでに解決策を知っていると思います:)
最も効果的な方法は、 Android-async-http を使用することです
このコードを使用してファイルをアップロードできます:
File myFile = new File("/path/to/file.png");
RequestParams params = new RequestParams();
try {
params.put("profile_picture", myFile);
} catch(FileNotFoundException e) {}