Guest User

Untitled

a guest
Jun 19th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <jsp:include page="<%= path_to_file %>" />
  2.  
  3. <td>
  4. <% BufferedReader br = new BufferedReader(new FileReader(new File(path_to_file)));
  5. String line = br.readLine();
  6. while (line != null) { %>
  7. <% out.println(line); %>
  8. <% line = br.readLine(); } %>
  9. </td>
  10. <% } catch (IOException e) { %>
  11. <td>
  12. <%= e %>
  13. </td>
  14. <% } %>
Add Comment
Please, Sign In to add comment