Advertisement
Guest User

Untitled

a guest
Sep 16th, 2014
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. FileOutputStream output = new FileOutputStream("StolleExcel.xls");
  2. workBook.write(output);
  3.  
  4. Desktop dt = Desktop.getDesktop();
  5. dt.open(new File("StolleExcel.xls"));
  6.  
  7. output.close();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement