如何通过java获取文件名和扩展名
更新时间:2020年01月20日 14:43:35 作者:慕尘
这篇文章主要介绍了如何通过java获取文件名和扩展名,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
这篇文章主要介绍了如何通过java获取文件名和扩展名,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
如:文件filePath = "E:\\test\\test.dxf"
1.获取文件名
eg:获取 test.dxf
通过file对象
import java.io.File;
public class test {
public static void main(String[] args) {
String filePath = "E:\\test\\test.dxf";
File tmpFile=new File(filePath);
String fileName=tmpFile.getName();
System.out.println(fileName);
}
}
使用split
public class test {
public static void main(String[] args) {
String filePath = "E:\\test\\test.dxf";
//带扩展名的文件名
String temp[] = filePath.split("\\\\");
String fileName = temp[temp.length - 1];
System.out.println(fileName);
}
}
使用substring
public class test {
public static void main(String[] args) {
String filePath = "E:\\test\\test.dxf";
String fileName = filePath.substring(filePath.lastIndexOf("\\")+1);
System.out.println(fileName);
}
}
2.获取不带扩展名的文件名
eg:获取 test
使用substring
public class test {
public static void main(String[] args) {
String filePath = "E:\\test\\test.dxf";
String fileName = filePath.substring(filePath.lastIndexOf("\\")+1);
String name = fileName.substring(0,fileName.lastIndexOf("."));
System.out.println(name);
}
}
3.扩展名
eg:获取 dxf
使用substring
public class test {
public static void main(String[] args) {
String filePath = "E:\\test\\test.dxf";
String fileName = filePath.substring(filePath.lastIndexOf("\\")+1);
String name = fileName.substring(filePath.lastIndexOf(".")+1);
System.out.println(name);
}
}
或
public class test {
public static void main(String[] args) {
String filePath = "E:\\test\\test.dxf";
String fileName = filePath.substring(filePath.lastIndexOf("\\")+1);
String[] strArray = fileName.split("\\.");
int suffixIndex = strArray.length -1;
System.out.println(strArray[suffixIndex]);
}
}
或
public class test {
public static void main(String[] args) {
String filePath = "E:\\test\\test.dxf";
String fileName = filePath.substring(filePath.lastIndexOf("\\")+1);
System.out.println(fileName);
String extension=fileName.substring(fileName.lastIndexOf(".")+1,fileName.length());
System.out.println(extension);
}
}
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
Java的MyBatis框架中实现多表连接查询和查询结果分页
这篇文章主要介绍了Java的MyBatis框架中实现多表连接查询和查询结果分页,借助MyBatis框架中带有的动态SQL查询功能可以比普通SQL查询做到更多,需要的朋友可以参考下2016-04-04
springboot redis使用lettuce配置多数据源的实现
这篇文章主要介绍了springboot redis使用lettuce配置多数据源的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2021-04-04
springboot集成mybatisPlus+多数据源的实现示例
这篇文章主要介绍了springboot集成mybatisPlus+多数据源的实现示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-12-12
使用Maven将springboot工程打包成docker镜像
这篇文章主要介绍了使用Maven将springboot工程打包成docker镜像,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教2021-12-12


最新评论