Rmfa 发表于 2017-6-3 11:54:40

file类执行错误

// 实现文件重命名移动
//执行环境rmf存在rmf2不存在

import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;

public class In {
        public static void main(String[]args){
        File rmf=new File("d:/rmf");
        File rmf2=new File("d:/下载");
        boolean b=rmf.renameTo(rmf2);
        System.out.print(b);

        }
}

零度非安全 发表于 2017-6-3 13:51:44

代码没有错误,请看下你 D 盘下有没有 rmf 这个文件夹
页: [1]
查看完整版本: file类执行错误