Загрузка файла с описанием в Restlet

Мне необходимозагрузить файл с некоторыми дополнительными данными, используяRestlet, Поэтому я создаю образец HTML-страницы, как показано ниже.

<html>
<body>
    <h1>*****Upload File with RESTFul WebService*****</h1>
    <form action="http://localhost:8080/test/api/streams/sample.json" method="post" enctype="multipart/form-data">


        <fieldset>
            <legend>Upload File</legend>

            <input type="file" name="fileToUpload"/><br />  
            <br /><br />
            Party ID<input type="text" name="mybody"  /><br />


            <input type="submit" name="Upload" id="Upload" value="Upload" />
        </fieldset>
    </form>
</body>

Мне нужно прочитать значение изполе ввода наряду с данными файла. Теперь можно прочитать содержимое файла. Как я могу получить значение из этого поля ввода в тот же вызов API.

@Post
public Representation accept(Representation entity) throws Exception {
Representation result = null;


if (entity != null) {
  if (MediaType.MULTIPART_FORM_DATA.equals(entity.getMediaType(), true)) {
    // 1/ Create a factory for disk-based file items
    DiskFileItemFactory factory = new DiskFileItemFactory();
    factory.setSizeThreshold(1000240);

    // 2/ Create a new file upload handler based on the Restlet
    // FileUpload extension that will parse Restlet requests and
    // generates FileItems.
    RestletFileUpload upload = new RestletFileUpload(factory);

    // 3/ Request is parsed by the handler which generates a
    // list of FileItems
    FileItemIterator fileIterator = upload.getItemIterator(entity);

    // Process only the uploaded item called "fileToUpload"
    // and return back
    boolean found = false;
    while (fileIterator.hasNext() && !found) {
      FileItemStream fi = fileIterator.next();
      Extractor extractor = new Extractor(getContext());

      if (fi.getFieldName().equals("fileToUpload")) {
        found = true;
        // consume the stream immediately, otherwise the stream
        // will be closed.
        StringBuilder sb = new StringBuilder("media type: ");
        sb.append(fi.getContentType()).append("\n");
        sb.append("file name : ");
        sb.append(fi.getName()).append("\n");
        BufferedReader br = new BufferedReader(new InputStreamReader(fi.openStream()));
        String line = null;
        while ((line = br.readLine()) != null) {
          sb.append(line);
        }
        sb.append("\n");
        result = new StringRepresentation(sb.toString(), MediaType.TEXT_PLAIN);
      }
    }
  } else {
    setStatus(Status.CLIENT_ERROR_BAD_REQUEST);
  }
  System.out.println("result==" + result);
}


return result;

}

Ответы на вопрос(0)

Ваш ответ на вопрос