本帖最后由 张宝 于 2013-5-9 20:55 编辑
- public class Hello{
- public static void main(String[] args){
- File f1 = new File("d:/");
- moveFile(f1); //这里为什么总是空指针异常
- }
- public static void moveFile(File dir){
- File[] files=dir.listFiles();
- for(File file:files){
- if(file.isDirectory())
- moveFile(file);
- else{
- if(file.getName().endsWith(".java"))
- file.renameTo(new File("c:/jad/"+file.getName().substring(0,file.getName().lastIndexOf('.'))+".jad"));
- }
- }
- }
- }
复制代码 |