Questo è supportato solo da Jsoup 1.8.2 (13 aprile 2015) tramite il nuovo metodo data(String, String, InputStream)
.
String url = "http://www......com/....php";
File file = new File("/path/to/file.ext");
Document document = Jsoup.connect(url)
.data("user", "user")
.data("password", "12345")
.data("email", "[email protected]")
.data("file", file.getName(), new FileInputStream(file))
.post();
// ...
Nelle versioni più vecchie, l'invio di multipart/form-data
richieste non è supportato. La cosa migliore è utilizzare un client HTTP completo per questo, come ad esempio Apache HttpComponents Client. In definitiva, è possibile ottenere la risposta del client HTTP come String
in modo da poterlo alimentare con il metodo Jsoup#parse()
.
String url = "http://www......com/....php";
File file = new File("/path/to/file.ext");
MultipartEntity entity = new MultipartEntity();
entity.addPart("user", new StringBody("user"));
entity.addPart("password", new StringBody("12345"));
entity.addPart("email", new StringBody("[email protected]"));
entity.addPart("file", new InputStreamBody(new FileInputStream(file), file.getName()));
HttpPost post = new HttpPost(url);
post.setEntity(entity);
HttpClient client = new DefaultHttpClient();
HttpResponse response = client.execute(post);
String html = EntityUtils.toString(response.getEntity());
Document document = Jsoup.parse(html, url);
// ...