자바 가 쓴 일괄 파일 이름 바 꾸 기 애플 릿
import java.io.File;
import java.sql.Date;
import java.util.Scanner;
public class RenameTool {
boolean useDefaultName = false;
boolean useDefaultSuffix = false;
Scanner sc = new Scanner(System.in);
//
private void reName() {
String filePath=getPath();
String diyName=getDiyName();
String setDiySuffix = setDiySuffix();
String suffix="";
File file=new File(filePath);
File[] filesList = file.listFiles();
// DIY ,
if (diyName==null) {
useDefaultName=true;
}
if (useDefaultName) {//
//
for (int i = 0; i < filesList.length; i++) {
long lastModified = filesList[i].lastModified();
Date date=new Date(lastModified);
String dateName=date.toString();
if (useDefaultSuffix){
//
suffix=getSuffix(filesList[i]);
}else{
suffix=setDiySuffix;
}
// : +\\+ + ,
String newFileName=filePath+"\\\\"+dateName+"-"+(i+1)+suffix;
File newFile=new File(newFileName);
filesList[i].renameTo(newFile);
System.out.print(filesList[i].getName()+" :");
System.out.println(newFileName);
}
}else { //
for (int j = 0; j < filesList.length; j++) {
if (useDefaultSuffix){
//
suffix=getSuffix(filesList[j]);
}else{
suffix=setDiySuffix;
}
String newFileName=filePath+"\\\\"+diyName+"-"+(j+1)+suffix;
File newFile=new File(newFileName);
System.out.print(filesList[j].getName()+" :");
filesList[j].renameTo(newFile);
System.out.println(newFileName);
}
}
}
//
private String getPath() {
// java ,
System.out.println(" , :C:\\\\XXX\\\\XX");
String path = sc.next();
System.out.println(path);
// sc.close();
return path;
}
// ,
private String getDiyName() {
System.out.println(" ( Y/y): ");
String newName = sc.next();
if (newName.equals("y") || newName.equals("Y")) {
return null;
}
return newName;
}
//
private String getSuffix(File file) {
String fileName = file.getName();
int length = fileName.length();
// "."
int pointIndex = fileName.lastIndexOf(".");
String suffix = fileName.substring(pointIndex, length);
return suffix;
}
// ,
private String setDiySuffix() {
System.out.println(" ? (), N/n :");
String input = sc.next();
sc.close();
if (input.equals("n") || input.equals("N")) {
useDefaultSuffix = true;
return null;
} else {
useDefaultSuffix = false;
input="."+input;
return input;
}
}
//
public static void begin() {
RenameTool t = new RenameTool();
t.reName();
}
//
public static void main(String[] args) {
RenameTool t = new RenameTool();
t.reName();
}
}
시간 이 있 으 면 쓰레기 파일 을 정리 하 는 애플 릿 을 다시 쓰 세 요 ~ ~ 또는 일부 파일 은 직접 삭제 할 수 없 는 강력 한 삭제 에 사용 합 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.