Java UTF8 createTemporaryOutputFolder()

Here you can find the source of createTemporaryOutputFolder()

Description

create Temporary Output Folder

License

Apache License

Declaration

public static Path createTemporaryOutputFolder() throws IOException 

Method Source Code


//package com.java2s;
//License from project: Apache License 

import java.io.IOException;

import java.nio.file.Files;
import java.nio.file.Path;

public class Main {
    public static Path createTemporaryOutputFolder() throws IOException {
        Path tmp = Files.createTempDirectory("glove-test-dir");
        tmp.toFile().deleteOnExit();/*w w  w .  j  a  va2 s  .  co m*/
        return tmp;
    }
}

Related

  1. compareWithGold(String goldfile, String outputfile)
  2. convertISO8859_1_to_UTF_8(String s)
  3. ConvertUTF8(byte[] buffer)
  4. createFileAndExport(String inputFileName, String outputFileName, String outputStr)
  5. createFromUTF8String(DatagramPacket packet, String str)
  6. decodePayloadFromUtf8(String utf8string)
  7. decodeUTF8(byte[] bytes)
  8. decodeUtf8(String url)
  9. decUTF8(String s)