我尝试在writeTo()
中使用ByteArrayOutputStream
方法。 Android Studio抛出错误消息:
无法解析方法'writeTo(java.io.ByteArrayOutputStream)'。
我在教程中找到了这个方法,我想使用MultipartEntityBuilder
将图像上传到服务器。
@Override
public byte[] getBody() throws AuthFailureError{
ByteArrayOutputStream bos = new ByteArrayOutputStream();
try {
mBuilder.build().writeTo(bos);
} catch (IOException e) {
VolleyLog.e("IOException writing to ByteArrayOutputStream bos, building the multipart request.");
}
return bos.toByteArray();
}