在我的Android应用中,我的文件名为myfile.jpg.des
。我想从文件名中修剪.des
。最终文件名应为myfile.jpg
。如何做java / android
由于
答案 0 :(得分:4)
使用此:
String test = "myfile.jpg.des";
test = test.substring(0, test.lastIndexOf("."));
答案 1 :(得分:0)
试试这个..
File sdcard = Environment.getExternalStorageDirectory();
File from = new File(sdcard,"myfile.jpg.des");
File to = new File(sdcard,"myfile.jpg");
from.renameTo(to);
答案 2 :(得分:0)
使用String.replace删除文件后缀:
String test = "myfile.jpg.des";
test = test.replace(".des", "");