JAVA怎么得到jLabel上的图片名称?不含路径的那种,直接得到→图片名.png
展开全部
是这个意思吧
例如:获取到的文件路径为C:\Documents and Settings\Leeo\My Documents\logo.gif
现在想要取得图片的名称logo.gif,我们知道反斜杠“\”是转义字符,所以不能直接
String temp[] = filePath.split("\");//filePath的值就是上面的文件路径
来分割文件路径,而应该这样写
/*
*java中\\表示一个\,而regex中\\也表示\,
*所以当\\\\解析成regex的时候为\\
**/
String temp[] = filePath.split("\\\\");
在Linux系统中
System.getProperty("file.separator", "\\")
输出为“/”,而在Windows系统中输出为“\”,所以要兼容两者可以这么写
String temp[] = filePath.replaceAll("\\\\","/").split("/");
获取文件名称的完整代码如下:
String temp[] = filePath.replaceAll("\\\\","/").split("/");
String fileName = ""
if(temp.length > 1){
fileName = temp[temp.length - 1];
}
例如:获取到的文件路径为C:\Documents and Settings\Leeo\My Documents\logo.gif
现在想要取得图片的名称logo.gif,我们知道反斜杠“\”是转义字符,所以不能直接
String temp[] = filePath.split("\");//filePath的值就是上面的文件路径
来分割文件路径,而应该这样写
/*
*java中\\表示一个\,而regex中\\也表示\,
*所以当\\\\解析成regex的时候为\\
**/
String temp[] = filePath.split("\\\\");
在Linux系统中
System.getProperty("file.separator", "\\")
输出为“/”,而在Windows系统中输出为“\”,所以要兼容两者可以这么写
String temp[] = filePath.replaceAll("\\\\","/").split("/");
获取文件名称的完整代码如下:
String temp[] = filePath.replaceAll("\\\\","/").split("/");
String fileName = ""
if(temp.length > 1){
fileName = temp[temp.length - 1];
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询