java中建立文件並寫入的方法

import java.io.*; public class CreateFile { public static void main(String[] args) { String path = "E:\\a\\s"; File file = new File(path); if (!file.exists()) {
相關文章
相關標籤/搜索