在Android 6(Marshmlow)中不推荐使用org.apache.http.entity.FileEntity
org.apache.http
HttpClient httpClient = new DefaultHttpClient();File file = new File(attr.Value);String url = server_url; HttpPost request = new HttpPost(url);FileEntity fileEntity = new FileEntity(file, "image/png"); request.setEntity(fileEntity);HttpResponse response = httpClient.execute(request);String output = getContent(response.getEntity().getContent());
HttpURLConnection
一只萌萌小番薯