public static void aaaaa(){ String path = "C:/Users/log.txt"; File Folder = new File(path); if(!Folder.exists()){ try{ Folder.mkdir(); System.out.println("폴더가 생성되었습니다."); } catch(Exception e){ e.getStackTrace(); } }else { System.out.println("이미 폴더가 생성 되어 있습니다."); } try{ OutputStream output = new FileOutputStream("C:/log.txt"); String str = "오늘 날씨는 아주 좋습니다."; byte[] by = str.getBytes(); output.wr..