multipartentity を使用して php サーバーに画像をアップロードしようとしています。httpmime 4.3 jar を使用して multipartentity をインポートしました。この jar をアプリに追加しましたが、このクラスをインポートできません。
public void postPicture(String path, File file) throws ParseException,
IOException {
HttpClient httpclient = new DefaultHttpClient();
httpclient.getParams().setParameter(
CoreProtocolPNames.PROTOCOL_VERSION, HttpVersion.HTTP_1_1);
HttpPost httppost = new HttpPost(path);
MultipartEntity mpEntity = new MultipartEntity();
FileBody cbFile = new FileBody(file, "image/png");
cbFile.getMediaType();
mpEntity.addPart("userfile", cbFile);
httppost.setEntity(mpEntity);
HttpResponse response = httpclient.execute(httppost);
}
誰でも私を助けることができますか?前もって感謝します。