java修改.jpg图片和mp3音频文件的扩展名
发布时间
阅读量:
阅读量
对当前目录及其下所有子目录中的jpg图片和mp3音频文件进行后缀名修改操作
import java.io.File;
import java.util.Scanner;
public class test2pro {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("please choose whether to modify or recover?");
String choose = sc.nextLine();
int flag = 0;
if(choose.equals("modify")){
flag =1;
}else{
flag = 0;
}
modifyExtension(System.getProperty("user.dir"),flag);
System.out.println("done");
}
//when flag = 1, cha
全部评论 (0)
还没有任何评论哟~
