Hallo,
ich möchte gerne ein bild (test.jpg) mittels post senden.
[JAVA=42]
String imagePhotos = "http://localhost:6789/image/service/?uploadData=";
File photo = new File(filePath);
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(imagePhotos + photo);
HttpResponse response = httpClient.execute(httpPost);
StatusLine statusLine = response.getStatusLine();
int statusCode = statusLine.getStatusCode();
//->
//Verarbeitung:
Part part = (Part) parameters.get("uploadData");
[/code]
Wie kann ich das bewerkstelligen?
Gruß
ich möchte gerne ein bild (test.jpg) mittels post senden.
[JAVA=42]
String imagePhotos = "http://localhost:6789/image/service/?uploadData=";
File photo = new File(filePath);
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(imagePhotos + photo);
HttpResponse response = httpClient.execute(httpPost);
StatusLine statusLine = response.getStatusLine();
int statusCode = statusLine.getStatusCode();
//->
//Verarbeitung:
Part part = (Part) parameters.get("uploadData");
[/code]
Wie kann ich das bewerkstelligen?
Gruß