1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | public class FileTest{ public static void main(String[] args){ try{ // 임시파일 생성 ex) temp_xxxxxxxx.tmp File tempFile = File.createTempFile("temp_", ".tmp", new File("C:\\temp")); // 절대경로 표시 System.out.println("절대경로 : " + tempFile.getAbsolutePath()); // 5초 동안 시간을 준다. Thread.sleep(5000); // 프로세스 종료 시에 지우는 메소드 tempFile.deleteOnExit(); } catch(IOException e){ e.printStackTrace(); } } } | cs |
'JAVA' 카테고리의 다른 글
원하는 자릿수만큼 랜덤 숫자 생성하기 (0) | 2019.03.05 |
---|---|
SVN 오류 E175002 Check Out operation failed 해결방법 (1) | 2019.03.05 |
[JAVA] FileChannel을 이용한 파일 옮기기 (0) | 2018.03.06 |
[JAVA] int형 <-> String형 형변환 (0) | 2017.06.09 |
자바 개발 도구 JDK 설치하기 (0) | 2017.02.23 |