public class FileSame {
public static void main(String[] args) {
String path="E:\\jar1";
File file = new File(path);
String[] strings = file.list();
String[] strings3=new String[strings.length];
char[] cs =null;
for (int i = 0; i < strings.length; ++i) {
cs = strings[i].toCharArray();
for (int j = cs.length-1; j >=0; --j) {
if (cs[j]=='5') {
cs[j]='6';
break;
}
}
strings3[i]=new String(cs);
}
String path2="E:\\jar2";
File file2 = new File(path2);
String[] strings2 = file2.list();
Arrays.sort(strings);
Arrays.sort(strings2);
Arrays.sort(strings3);
if (Arrays.equals(strings3, strings2)) {
for (int i = 0,j=0; i < strings.length&&j<strings2.length; ++i,++j) {
file=new File(path+File.separator+ strings[i]);
file2=new File(path+File.separator+ strings2[j]);
System.out.println(file.renameTo(file2));
}
}
}
點(diǎn)擊查看更多內(nèi)容
為 TA 點(diǎn)贊
評(píng)論
評(píng)論
共同學(xué)習(xí),寫下你的評(píng)論
評(píng)論加載中...
作者其他優(yōu)質(zhì)文章
正在加載中
感謝您的支持,我會(huì)繼續(xù)努力的~
掃碼打賞,你說(shuō)多少就多少
贊賞金額會(huì)直接到老師賬戶
支付方式
打開(kāi)微信掃一掃,即可進(jìn)行掃碼打賞哦