Guest User

Untitled

a guest
Jul 23rd, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. localhost:8080/api/get/img/1/imageFileName.png
  2.  
  3. <img src="localhost:8080/api/get/img/1/imageFileName.png"/>
  4.  
  5. @GET
  6. @Path("get/img/1")
  7. public String getFile() {
  8. File file = Paths.get(".", "resources", "Mockup9EventsPageAsMember.png").normalize().toFile();
  9. return file.toString();
  10. }
Add Comment
Please, Sign In to add comment