import java.io.File ;
public class Test{
public static void main(String args[]){
File f = new File("d:"+File.separator+"tet") ;// 实例化File类的对象
f.mkdir() ; // 创建文件夹
}
};
public class Test{
public static void main(String args[]){
File f = new File("d:"+File.separator+"tet") ;// 实例化File类的对象
f.mkdir() ; // 创建文件夹
}
};