码迷,mamicode.com
首页 > 其他好文 > 详细

从文件路径中获取文件名的方法

时间:2015-07-29 19:42:57      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:从文件路径中获取文件名的方法



//根据文件路径截取文件名
 
 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://rogerfederer.iteye.com/blog/1039666

 

本文出自 “一无所有-天行者” 博客,请务必保留此出处http://tianxingzhe.blog.51cto.com/3390077/1679695

从文件路径中获取文件名的方法

标签:从文件路径中获取文件名的方法

原文地址:http://tianxingzhe.blog.51cto.com/3390077/1679695

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!