我从http://www.java2s.com/Code/Jar/h/Downloadhttpmimejar.htm下载 httpmime.jar
我把httpmime.jar放在jre7/lib/ext/的文件夹下
在下面的代码中出现错误 [此行有多个标记]
MultipartEntity entity = new MultipartEntity(
HttpMultipartMode.BROWSER_COMPATIBLE);
你能给点建议吗?谢谢
我的参考android的代码如下--------
StringBuffer responseBody = new StringBuffer();
HttpClient client = new DefaultHttpClient();
client.getParams().setParameter(
CoreProtocolPNames.PROTOCOL_VERSION, HttpVersion.HTTP_1_1);
HttpPost post = new HttpPost("http://IP.IP.IP.IP/file_upload.php");
MultipartEntity entity = new MultipartEntity(
HttpMultipartMode.BROWSER_COMPATIBLE);
entity.addPart("uploadedfile", new FileBody((FileObj), "application/zip"));
post.setEntity(entity);
...