Advertisement
Guest User

Untitled

a guest
Jul 30th, 2014
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. @POST
  2. @Path("/upload")
  3. @Consumes(MediaType.MULTIPART_FORM_DATA)
  4. //public Response uploadFile(
  5. public void uploadFile(
  6. @FormDataParam("file") InputStream fileInputStream,
  7. @FormDataParam("file") FormDataContentDisposition contentDispositionHeader,
  8. @CookieParam(value = "name") String name,
  9. @FormDataParam("title") String title) {
  10. [16:07:02] Vadym Morozov: <section class="uploadform">
  11. <form action="http://localhost:8080/Bank1/rest/jsonServices/upload" method="post" enctype="multipart/form-data" id="upform">
  12. <p>
  13. Select a file : <input type="file" name="file" size="45" id="fileinput"/>
  14. </p>
  15. <input type="text" name="title" id="title">
  16. <input type="submit" value="Upload It" id="inpbtn" />
  17. </form>
  18. </section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement