1. 程式人生 > >java提取檔案的副檔名

java提取檔案的副檔名

提取檔案的副檔名

String ext = musicLocal.substring(musicLocal.lastIndexOf("."));
    //得到"."最後出現的位置
    musicLocal.lastIndexOf(".")
   String id = "123454321";
   String shortId, longId, Id;
   shortId = id.substring(2, 7);
   longId = id.substring(1, 8);
   Id = id.substring(4);
   System.out.println(shortId);
   System.out.println(longId);
   System.out.println(Id);

在這裡插入圖片描述
substring(x)是從字串的的第x個字元擷取到最後
substring(x,y)是從x到y前的位置停止