gpt4 book ai didi

android - "org.apache.http.client.NonRepeatableRequestException"安卓上传图片时

转载 作者:太空狗 更新时间:2023-10-29 14:26:01 25 4
gpt4 key购买 nike

我正在尝试从 Android 向 Rails 服务器发送图片。但是当我发送时,出现以下错误。

09-19 23:22:11.810: W/System.err(2704): org.apache.http.client.ClientProtocolException                                                                                        
09-19 23:22:12.000: W/System.err(2704): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:557)
09-19 23:22:12.020: W/System.err(2704): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:487)
09-19 23:22:12.020: W/System.err(2704): at com.loopj.android.http.AsyncHttpRequest.makeRequest(AsyncHttpRequest.java:73)
09-19 23:22:12.050: W/System.err(2704): at com.loopj.android.http.AsyncHttpRequest.makeRequestWithRetries(AsyncHttpRequest.java:92)
09-19 23:22:12.050: W/System.err(2704): at com.loopj.android.http.AsyncHttpRequest.run(AsyncHttpRequest.java:54)
09-19 23:22:12.050: W/System.err(2704): at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:444)
09-19 23:22:12.050: W/System.err(2704): at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:306)
09-19 23:22:12.050: W/System.err(2704): at java.util.concurrent.FutureTask.run(FutureTask.java:138)
09-19 23:22:12.050: W/System.err(2704): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1088)
09-19 23:22:12.060: W/System.err(2704): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:581)
09-19 23:22:12.070: W/System.err(2704): at java.lang.Thread.run(Thread.java:1019)
09-19 23:22:12.250: W/System.err(2704): Caused by: org.apache.http.client.NonRepeatableRequestException: Cannot retry request with a non-repeatable request entity
09-19 23:22:12.320: W/System.err(2704): at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:413)
09-19 23:22:12.360: W/System.err(2704): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:555)
09-19 23:22:12.370: W/System.err(2704): ... 10 more

奇怪的是我每次上传图片时都不会收到此错误,只是有时在执行相同的过程时会收到此错误。这是我的代码。我正在使用“AsyncHttpClient”(http://loopj.com/android-async-http/) 进行 http 连接。

public class AsynchConnector{
static AsyncHttpClient client = new AsyncHttpClient();
private static final String BASE_URL = Environment.SERVER_URL;

public static void post(String url, RequestParams params, AsyncHttpResponseHandler responseHandler){
Log.w("web", "sending POST requset to " + getAbsoluteUrl(url));
client.post(getAbsoluteUrl(url), params, responseHandler);
}
}


public static void postPicture(String serverAlbumId, String serverUserId, String filePath){
RequestParams params = new RequestParams();
params.put("user_id", CameraApp.sp.getString("server_user_id", ""));
params.put("picture[album_id]", serverAlbumId);
params.put("picture[user_id]", serverUserId);

try{
params.put("picture[image]", StorageAccessor.getPictureAsFile(filePath));
}catch(FileNotFoundException e){
Log.e("---", "no image file found ");
}

Log.i("----------", "starting to post picture");
AsynchConnector.post(PICTURE_PATH, params, new AsyncHttpResponseHandler(){
public void onSuccess(String response) {
Log.i("POST_PICTURE_RESOPNSE", response);
}
});
}

最佳答案

这是由于在 AsynchHttpClient 中使用了 OutputStreamWriter 类。这篇文章可能有助于了解正在发生的事情。

http://httpcomponents.10934.n7.nabble.com/Http-Multi-part-exception-when-using-InputStreamBody-td12820.html

我通过在 ResponseHandler 中实现 onFailure(Throwable error) 方法解决了这个问题,它再次做了同样的事情。 (在我的例子中,调用 postPicture 方法。)

关于android - "org.apache.http.client.NonRepeatableRequestException"安卓上传图片时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12552672/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com