码迷,mamicode.com
首页 > 其他好文 > 详细

批量改文件名

时间:2018-02-21 23:33:50      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:nbsp   file   com   ring   web开发   get   imp   javascrip   import   

 1 package com.hxl;
 2 
 3 import java.io.File;
 4 
 5 public class Test {
 6     public static void main(String[] args) {
 7         String str = "E:\\工作学习\\计算机杂类\\Java Web开发\\JavaScript & jQuery精品教程视频\\jQuery\\第3天\\";
 8         File file = new File(str);
 9         File[] files = file.listFiles();
10         for (File f : files) {
11             String num = f.getName().substring(0, 2);
12             String ss = f.getName().substring(3);
13             f.renameTo(new File(str + "第" + num + "讲:" + ss));
14         }
15     }
16 }

 

批量改文件名

标签:nbsp   file   com   ring   web开发   get   imp   javascrip   import   

原文地址:https://www.cnblogs.com/schiller-hu/p/8457708.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!