A. *_*ger 8 java android apache-httpcomponents build.gradle android-gradle-plugin
我尝试使用build.gradle文件在我的应用程序中包含httpmime,所有内容编译都很好.相反,当应用程序尝试实际使用MultipartEntityBuilder类时,日志上有一堆WARN级别消息说有问题.
以下是我的build.gradle对依赖项的摘录:
compile('org.apache.httpcomponents:httpmime:4.+') {
exclude module: "httpclient"
}
以下是错误:
10-09 13:39:37.367 2409-2426/com.company.app W/dalvikvm? VFY: unable to resolve static field 6967 (DEFAULT_BINARY) in Lorg/apache/http/entity/ContentType; 10-09 13:39:37.367 2409-2426/com.company.app W/dalvikvm? VFY: unable to find class referenced in signature (Lorg/apache/http/entity/ContentType;) 10-09 13:39:37.367 2409-2426/com.company.app W/dalvikvm? VFY: unable to find class referenced in signature (Lorg/apache/http/entity/ContentType;) 10-09 13:39:37.367 2409-2426/com.company.app W/dalvikvm? VFY: unable to resolve static field 6967 (DEFAULT_BINARY) in Lorg/apache/http/entity/ContentType; 10-09 13:39:37.367 2409-2426/com.company.app W/dalvikvm? VFY: unable to find class referenced in signature (Lorg/apache/http/entity/ContentType;) 10-09 13:39:37.367 2409-2426/com.company.app W/dalvikvm? VFY: unable to find class referenced in signature (Lorg/apache/http/entity/ContentType;) 10-09 13:39:37.367 2409-2426/com.company.app W/dalvikvm? VFY: unable to resolve static field 6967 (DEFAULT_BINARY) in Lorg/apache/http/entity/ContentType; 10-09 13:39:37.367 2409-2426/com.company.app W/dalvikvm? VFY: unable to find class referenced in signature (Lorg/apache/http/entity/ContentType;) 10-09 13:39:37.367 2409-2426/com.company.app W/dalvikvm? VFY: unable to find class referenced in signature (Lorg/apache/http/entity/ContentType;) 10-09 13:39:37.377 2409-2426/com.company.app W/dalvikvm? VFY: unable to resolve static method 19478: Lorg/apache/http/util/Args;.notNull (Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object; 10-09 13:39:37.377 2409-2426/com.company.app W/dalvikvm? VFY: unable to resolve static field 6968 (DEFAULT_TEXT) in Lorg/apache/http/entity/ContentType; 10-09 13:39:37.377 2409-2426/com.company.app W/dalvikvm? VFY: unable to find class referenced in signature (Lorg/apache/http/entity/ContentType;) 10-09 13:39:37.377 2409-2426/com.company.app W/dalvikvm? VFY: unable to find class referenced in signature (Lorg/apache/http/entity/ContentType;)
java类:
import android.util.Log;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import org.apache.http.HttpEntity;
import org.apache.http.entity.mime.MultipartEntityBuilder;
public class FileUploader {
private final static String BOUNDARY = "__--__--__SERVETHEOVERMIND-__-_";
public void uploadFile(String targetUrl, MultipartEntityBuilder upload, UploadHandler after) {
Log.v("FileUploader", "Uploading to " + targetUrl);
HttpURLConnection con = null;
OutputStream os = null;
InputStream is = null;
try {
HttpEntity uploadEntity = upload.build();
URL postTo = new URL(targetUrl);
con = (HttpURLConnection) postTo.openConnection();
con.setRequestMethod("POST");
con.setRequestProperty("Content-Type", "multipart/form-data;boundary=" + BOUNDARY);
con.setDoOutput(true);
con.setDoInput(true);
con.setUseCaches(false);
con.addRequestProperty("Connection", "Keep-Alive");
con.setRequestProperty("Content-length", String.valueOf(uploadEntity.getContentLength()));
os = con.getOutputStream();
uploadEntity.writeTo(os);
os.close();
con.connect();
is = con.getInputStream();
after.consumeUploadResponse(is);
con.disconnect();
} catch (IOException e) {
e.printStackTrace();
}
if(con != null) {
con.disconnect();
}
if(os != null) {
try {
os.close();
} catch (IOException e) {
Log.v("Uploader", "Closed output stream");
}
}
if(is != null) {
try {
is.close();
} catch (IOException e) {
Log.v("Uploader", "Closed input stream");
}
}
}
public interface UploadHandler {
public void consumeUploadResponse(InputStream stream);
}
}
[编辑]根据答案纠正依赖关系
compile('org.apache.httpcomponents:httpmime:4.+') {
exclude module: "httpclient"
}
compile('org.apache.httpcomponents:httpcore:4.+') {
exclude module: "httpclient"
}
[第二次编辑]仍然有问题 - 现在这是其他缺失的位,但它可能是后端的问题:
10-10 11:51:54.998 29597-29638/com.company.app W/dalvikvm? VFY: unable to resolve static field 7465 (INSTANCE) in Lorg/apache/http/message/BasicHeaderValueParser; 10-10 11:51:54.998 29597-29638/com.company.app W/dalvikvm? VFY: unable to resolve static field 7459 (INSTANCE) in Lorg/apache/http/message/BasicHeaderValueFormatter;
[另一个编辑]
在这种情况下,似乎最后遗漏的小部分对成功使用MultipartEntityBuilder没有任何影响.
Jon*_*tan 13
这就是我在学习中的表现.
dependencies {
compile ('org.apache.httpcomponents:httpmime:4.3'){
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
}
compile ('org.apache.httpcomponents:httpcore:4.4.1'){
exclude group: 'org.apache.httpcomponents', module: 'httpclient'
}
}
Run Code Online (Sandbox Code Playgroud)
而在android内部
android{
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
}
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
12069 次 |
| 最近记录: |