public void writeToFile(Path path, String content) { try { Files.write(path, content.getBytes()); } catch (IOException e) { // exception ...
確定! 回上一頁