私の最後のアプリでは、Koush Ionライブラリを使用します。とても便利ですが、残りのサーバーへのファイルのアップロードに問題があります。注:アップロードプロセスが成功した場合のサーバーの応答は1です
私のコードはこれが好きです:
public class MainActivity extends Activity {
Button upload, login;
TextView uploadCount;
ProgressBar progressBar;
String token, FilePath;
Future<String> uploading;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
upload = (Button) findViewById(R.id.upload);
uploadCount = (TextView) findViewById(R.id.upload_count);
progressBar = (ProgressBar) findViewById(R.id.progress);
token = "147c85ce29dc585966271280d59899a02b94c020";
FilePath = Environment.getExternalStorageDirectory().toString()+"/police.mp3";
upload.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
if (uploading !=null && !uploading.isCancelled()){
resetUpload();
return;
}
upload.setText("Uploading...");
uploading = Ion.with(MainActivity.this)
.load("http://myserver.com/api/v1/tone/upload/?token="+token)
.setLogging("UPLOAD LOGS:", Log.DEBUG)
.uploadProgressBar(progressBar)
.uploadProgressHandler(new ProgressCallback() {
@Override
public void onProgress(int downloaded, int total) {
uploadCount.setText("" + downloaded + "/" + total);
}
})
.setMultipartParameter("title", "police")
.setMultipartParameter("category", "7")
.setMultipartFile("file_url", new File(FilePath))
.asString()
.setCallback( new FutureCallback<String>() {
@Override
public void onCompleted(Exception e, String result) {
// TODO Auto-generated method stub
}
})
;
}
});
しかし、サーバーから TimeoutException を受け取りました。私の質問は次のとおりです。1.私が行ったファイルを選択するのは正しい方法ですか?! 2. Future Callback を String として使用する必要がありますか?!
サーバーにファイルをアップロードしようとすると、fiddler2 でサーバーへのリクエストをチェックします...リクエストが送信され、multipartParameters が送信されることを示していますが、ファイルを送信しようとすると...フィドラーがエラーを表示します:
Protocol Violation Report:
Content-Length mismatch: Request Header indicated 455 bytes, but client sent 387 bytes.