答案 0 :(得分:0)
您需要将jpg文件转换为位图对象,然后需要将其压缩为字节数组以发送多部分请求。
hover()
答案 1 :(得分:0)
有很多关于stackoverflow的关于multipart的帖子,试试这个
public static String uploadMultipartFile(String root, String token,
String username, String sourceFileUri,
String fileStyle)
{
HttpURLConnection connection = null;
DataOutputStream outputStream = null;
String pathToOurFile = sourceFileUri;
String lineEnd = "\r\n";
String twoHyphens = "--";
String boundary = "*****";
StringBuffer response = new StringBuffer();
try
{
FileInputStream fileInputStream = new FileInputStream(new File(pathToOurFile));
URL url = new URL(root);
connection = (HttpURLConnection) url.openConnection();
if (token != null)
{
connection.setRequestProperty("Authorization", "Basic " + token);
}
if (username != null)
{
connection.setRequestProperty("Username", username);
}
if (fileStyle != null)
{
connection.setRequestProperty("file-type", fileStyle);
}
String fileExtension = FilenameUtils.getExtension(sourceFileUri);
String mime = Utils.getFileMIME(fileExtension);
Log.d("uploadMultipartFile","fileExtension:"+fileExtension+",mime:"+mime);
connection.setDoInput(true);
connection.setDoOutput(true);
connection.setUseCaches(false);
connection.setRequestMethod("POST");
connection.setRequestProperty("Connection", "Keep-Alive");
connection.setRequestProperty("Cache-Control", "no-cache");
connection.setRequestProperty("User-Agent", "CodeJava Agent");
connection.setRequestProperty("Content-Type", "multipart/form-data;boundary=" + boundary);
outputStream = new DataOutputStream(connection.getOutputStream());
outputStream.writeBytes(twoHyphens + boundary + lineEnd);
outputStream.writeBytes("Content-Disposition: form-data; name=\"uploadedfile\";filename=\""
+ pathToOurFile + "\"" + lineEnd);
outputStream.writeBytes("Content-Type: "+ mime + lineEnd);
outputStream.writeBytes(lineEnd);
byte[]bytes = IOUtils.toByteArray(fileInputStream);
outputStream.write(bytes);
outputStream.writeBytes(lineEnd);
outputStream.writeBytes(twoHyphens + boundary + twoHyphens + lineEnd);
int serverResponseCode = connection.getResponseCode();
String serverResponseMessage = connection.getResponseMessage();
Log.i(HttpUtil.class.getSimpleName(), String.valueOf(serverResponseCode));
Log.i(HttpUtil.class.getSimpleName(), serverResponseMessage);
fileInputStream.close();
outputStream.flush();
outputStream.close();
BufferedReader br=null;
if(connection.getResponseCode()>=200 && connection.getResponseCode()<300)
{
br = new BufferedReader(new InputStreamReader((connection.getInputStream())));
}
else if(connection.getResponseCode()>=400)
{
br = new BufferedReader(new InputStreamReader((connection.getErrorStream())));
}
String inputLine;
while ((inputLine = br.readLine()) != null) {
response.append(inputLine);
}
System.out.println("result from server:"+response.toString());
}
catch (Exception ex)
{
ex.printStackTrace();
}
return response.toString();
}
答案 2 :(得分:0)
将此添加到您的gradle构建
compile('org.apache.httpcomponents:httpmime:4.3.6') {
exclude module: 'httpclient'
}
将您的代码写在webservice类中,如下所述
public MyPojo post(String name, String gender, String celbID) {
MultipartEntityBuilder multipartEntity = MultipartEntityBuilder.create();
multipartEntity.addPart("Name", new StringBody(name, ContentType.TEXT_PLAIN));
multipartEntity.addPart("gender", new StringBody(gender, ContentType.TEXT_PLAIN));
multipartEntity.addPart("Celb_id", new StringBody(celbID, ContentType.TEXT_PLAIN));
httppost.setEntity(multipartEntity.build());
HttpResponse httpResponse = httpclient.execute(httppost);
HttpEntity httpEntity = httpResponse.getEntity();
aJsonResponse = EntityUtils.toString(httpEntity);
一旦你对此有疑问,请给我打电话......