本文共 338 字,大约阅读时间需要 1 分钟。
//根据文件路径截取文件名 public String getfileName(String s) throws Exception{ s.trim(); String fileName = s.substring(s.lastIndexOf("/")+1); //或者 String fileName = s.substring(s.lastIndexOf("\\")+1); System.out.println("fileName = " + fileName); return fileName; }
参考文章:
本文出自 “” 博客,请务必保留此出处
转载地址:http://ejczl.baihongyu.com/