我的SD卡中有zip文件,大小为8-9 mb.I' m使用此库发送数据。
这是我的来源
private void sendSubmitRequest(File file)
{
AsyncHttpClient client = new AsyncHttpClient();
RequestParams params = new RequestParams();
showpDialog("loading");
try
{
params.put("vin", vinNumber.getText().toString());
params.put("polygon", polygonAdapter.getItem(spinnerPosition).getId()+"");
params.put("scanner_key", vinScannerModel.getSecretKey());
params.put("status", status);
params.put("user", vinScannerModel.getId()+"");
InputStream inputStream = null;
inputStream = new FileInputStream(file.getAbsolutePath());
byte[] buffer = new byte[8192];
int bytesRead;
ByteArrayOutputStream output = new ByteArrayOutputStream();
Base64OutputStream output64 = new Base64OutputStream(output, Base64.DEFAULT);
try {
while ((bytesRead = inputStream.read(buffer)) != -1) {
output64.write(buffer, 0, bytesRead);
}
} catch (IOException e) {
e.printStackTrace();
}
output64.close();
String attachedFile = output.toString();
params.put("photos", attachedFile);
}
catch (Exception e)
{
e.printStackTrace();
}
client.post(ServerUtil.addVin, params, new TextHttpResponseHandler() {
@Override
public void onFailure(int statusCode, Header[] headers, String responseString, Throwable throwable) {
showOneItemDialog(throwable.toString(),false);
hidepDialog();
Log.d("server status",responseString+"");
}
@Override
public void onSuccess(int statusCode, Header[] headers, String responseString) {
Log.d("server status",responseString+"");
try {
hidepDialog();
JSONObject mainJsonObject = new JSONObject(responseString.toString());
boolean status=mainJsonObject.getBoolean("status");
String desc=mainJsonObject.getString("desc");
if(desc!=null)
showOneItemDialog(desc,status);
} catch (JSONException e) {
e.printStackTrace();
showOneItemDialog(e.toString(),false);
}
}
});
}
我的代码工作正常但我想检查我的解决方案是否完整?
答案 0 :(得分:4)
您需要在上传服务中运行此操作,而不是作为活动/ UI的一部分。如果用户杀死了活动(或者由于内存压力而被删除),您将失去上传。
我没有使用过这个特定的库,但是像这样的一个看起来像你会发现有用的东西,快速浏览一下就会发现它具有一般需要的大部分功能: https://github.com/gotev/android-upload-service