仅从 Jsoup 1.8.2(2015 年 4 月 13 日)开始支持此功能
通过新的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", "info@tutorialswindow.com")
.data("file", file.getName(), new FileInputStream(file))
.post();
// ...
在旧版本中,不支持发送multipart/form-data 请求。您最好的选择是为此使用一个完全值得的 HTTP 客户端,例如 Apache HttpComponents Client。您最终可以获得String 的HTTP 客户端响应,以便您可以将其提供给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("info@tutorialswindow.com"));
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);
// ...