我正在尝试使用离子库将图像文件上传到我的服务器。我正在使用以下代码
Ion.with(this, "upload_url")
.setMultipartFile("imagefile", "image/jpeg", new File("file:///storage/emulated/0/Pictures/MyCameraApp/IMG_19700101_000000.jpg"))
.asJsonObject()
.setCallback(new FutureCallback<JsonObject>() {
@Override
public void onCompleted(Exception e, JsonObject result) {
Log.w("ERROR",""+e);
Log.w("RESULT",""+result);
}
});
但我得到了:
11-18 19:09:08.465: W/ERROR(1435): com.google.gson.JsonParseException: unable to parse json
这段代码有什么问题?