How can i programmatically upload a file to a website?

When programmatically submitting a JSF-generated form, you need to make sure that you take the following 3 things in account:

  1. Maintain the HTTP session (certainly if website has JSF server side state saving turned on).
  2. Send the name-value pair of the javax.faces.ViewState hidden field.
  3. Send the name-value pair of the button which is virtually to be pressed.

Otherwise the action will possibly not be invoked at all. For the remnant it’s not different from “regular” forms. The flow is basically as follows:

  • Send a GET request on the page with the form.
  • Extract the JSESSIONID cookie.
  • Extract the value of the javax.faces.ViewState hidden field from the response. If necessary (for sure if it has a dynamically generated name and thus possibly changes every request), extract the name of input file field and the submit buttonas well. Dynamically generated IDs/names are recognizeable by the j_id prefix.
  • Prepare a multipart/form-data POST request.
  • Set the JSESSIONID cookie (if not null) on that request.
  • Set the name-value pair of javax.faces.ViewState hidden field and the button.
  • Set the file to be uploaded.

You can use any HTTP client library to perform the task. The standard Java SE API offers java.net.URLConnection for this, which is pretty low level. To end up with less verbose code, you could use Apache HttpClient to do the HTTP requests and manage the cookies and Jsoup to extract data from the HTML.

Here’s a kickoff example, assuming that the page has only one <form> (otherwise you need to include an unique identifier of that form in Jsoup’s CSS selectors):

String url = "http://localhost:8088/playground/test.xhtml";
String viewStateName = "javax.faces.ViewState";
String submitButtonValue = "Upload"; // Value of upload submit button.

HttpClient httpClient = new DefaultHttpClient();
HttpContext httpContext = new BasicHttpContext();
httpContext.setAttribute(ClientContext.COOKIE_STORE, new BasicCookieStore());

HttpGet httpGet = new HttpGet(url);
HttpResponse getResponse = httpClient.execute(httpGet, httpContext);
Document document = Jsoup.parse(EntityUtils.toString(getResponse.getEntity()));
String viewStateValue = document.select("input[type=hidden][name=" + viewStateName + "]").val();
String uploadFieldName = document.select("input[type=file]").attr("name");
String submitButtonName = document.select("input[type=submit][value=" + submitButtonValue + "]").attr("name");

File file = new File("/path/to/file/you/want/to/upload.ext");
InputStream fileContent = new FileInputStream(file);
String fileContentType = "application/octet-stream"; // Or whatever specific.
String fileName = file.getName();

HttpPost httpPost = new HttpPost(url);
MultipartEntity entity = new MultipartEntity();
entity.addPart(uploadFieldName, new InputStreamBody(fileContent, fileContentType, fileName));
entity.addPart(viewStateName, new StringBody(viewStateValue));
entity.addPart(submitButtonName, new StringBody(submitButtonValue));
httpPost.setEntity(entity);
HttpResponse postResponse = httpClient.execute(httpPost, httpContext);
// ...

Leave a Comment