자바 파일 이름 대문자 로 소문 자 를 바 꾸 고 특수 문 자 를 제거 합 니 다.
1960 단어 자바
,ui , , _ 。
package tjy.xa.cn.javalib.base;
import java.io.File;
/**
* Created by wq on 2017/12/18.
*/
public class Main {
public static void main(String[] args) {
// String path = "D:\\tjy_project\\test\\hdpi";
String path = "D:\\tjy_project\\code\\ElevatorMonitorTJY\\app\\src\\main\\res\\drawable-xxhdpi";
changeUpper2Small(path);
}
public static void changeUpper2Small(String path) {
File file = new File(path);
File[] files = file.listFiles();
StringBuffer sb = new StringBuffer();
for (int i = 0; i < files.length; i++) {
boolean isUpperCase = false;
File file1 = files[i];
String pathFile = file1.getAbsolutePath();
int index = pathFile.lastIndexOf("\\");
String oldPath = pathFile.substring(0, index + 1);
String name = pathFile.substring(index + 1);
sb.setLength(0);
for (int j = 0; j < name.length(); j++) {
char c = name.charAt(j);
if (Character.isUpperCase(c)) {
isUpperCase = true;
c = Character.toLowerCase(c);
if ((j - 1) > 0 && name.charAt(j - 1) != '_') {
sb.append("_");
}
}
sb.append(c);
}
String newName = sb.toString();
if (isUpperCase) {
file1.renameTo(new File(oldPath, newName));
System.out.println(" " + name);
System.out.println(" " + newName);
}
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.