我试图将字节数组图像发送到服务器
我用过:
MultipartEntity entity = new MultipartEntity(
HttpMultipartMode.BROWSER_COMPATIBLE);
//Set Data and Content-type header for the image
entity.addPart("file", new ByteArrayBody(ba, "image/jpeg", "file"));
postRequest.setEntity(entity);
我有这个错误
" ByteArrayBody无法解析为类型"
我导入了我的项目 所有httpmime,httpclient和httpcore jars !!
我不知道还能做什么 提前谢谢。