コード例 #1
0
ファイル: Utils.java プロジェクト: raghavendrabhat/h2o
 /**
  * Returns the system temporary folder, e.g. /tmp
  */
 public static File tmp() {
   try {
     return File.createTempFile("h2o", null).getParentFile();
   } catch( IOException e ) {
     throw new RuntimeException(e);
   }
 }
コード例 #2
0
ファイル: Utils.java プロジェクト: raghavendrabhat/h2o
 public static File writeFile(String content) {
   try {
     return writeFile(File.createTempFile("h2o", null), content);
   } catch( IOException e ) {
     throw Log.errRTExcept(e);
   }
 }