Guest User

Untitled

a guest
Apr 27th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. import com.google.common.io.Files;
  2.  
  3. /**
  4. * create temp dir (Google Guava)
  5. */
  6. public class Test
  7. {
  8. public static void main(String[] args)
  9. {
  10. System.out.println(Files.createTempDir());
  11. //result : "/tmp/1524150291179-0"
  12. }
  13. }
Add Comment
Please, Sign In to add comment