Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1. private Path saveHtml(String table) throws FileNotFoundException, IOException {
  2.         Path htmlFile = Files.createTempFile("previa", ".html");
  3.         BufferedWriter bw = Files.newBufferedWriter(htmlFile);
  4.         bw.write(table);
  5.         bw.newLine();
  6.         return htmlFile;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement