http://www.java2s.com/Code/Jar/h/Downloadhttpmimejar.htmから httpmime.jar をダウンロードします。
httpmime.jar を jre7/lib/ext/ のフォルダに入れます
以下のコードでエラー [この行に複数のマーカー] が発生しました
MultipartEntity entity = new MultipartEntity(
HttpMultipartMode.BROWSER_COMPATIBLE);
何か提案をいただけますか?ありがとう
以下の私の参照アンドロイドのコード--------
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);
...