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()) {
相关文章
相关标签/搜索