gpt4 book ai didi

android - com.android.volley.NoConnectionError : java.net.SocketException: sendto failed: EPIPE (Broken pipe)

转载 作者:行者123 更新时间:2023-11-29 01:17:44 25 4
gpt4 key购买 nike

我有一个简单的任务,就是使用 Volley 将 base 64 编码的图像上传到服务器。

我的服务器没有做任何事情。它只返回 200 状态代码。但是我总是以这个错误结束即使在服务器返回 200 之后也是如此。我尝试了其他一些在线解决方案,但似乎没有任何效果。

private void uploadImage(){
obj = new JSONObject();
try {
obj.put("image", getStringImage(bitmap));
} catch (Exception e) {

}
JsonObjectRequest jsonObjectRequest = new JsonObjectRequest(Request.Method.POST, UPLOAD_URL, obj,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject jsonObject) {
Log.e("Message from server", jsonObject.toString());
Toast.makeText(getApplication(), "Image Uploaded Successfully", Toast.LENGTH_SHORT).show();
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError volleyError) {
Log.e("Message from server", volleyError.toString());
}
}) {
@Override
public Map<String, String> getHeaders() throws AuthFailureError {
Map<String, String> headers = new HashMap<String, String>();
return headers;
}

};
requestQueue.add(jsonObjectRequest);
}

public String getStringImage(Bitmap bmp){
ByteArrayOutputStream baos = new ByteArrayOutputStream();
bmp.compress(Bitmap.CompressFormat.JPEG, 100, baos);
byte[] imageBytes = baos.toByteArray();
String encodedImage = Base64.encodeToString(imageBytes, Base64.DEFAULT);
return encodedImage;
}

最佳答案

我知道这已经晚了,但对我来说,解决方案是增加服务器中的 http 最大帖子大小。对我来说,我使用带有嵌入式 tomcat 服务器的 spring boot,所以解决方案是将以下行添加到你的 application.properties 文件:

server.tomcat.max-http-post-size=10000000

上面我已将其设置为 10MB ,另一种方法是通过此链接中的答案所指出的 java 代码 Increase HTTP Post maxPostSize in Spring Boot

希望对你有帮助

关于android - com.android.volley.NoConnectionError : java.net.SocketException: sendto failed: EPIPE (Broken pipe),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38561365/

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