当前位置 : 主页 > 编程语言 > java >

java中两行代码搞定根据路径截取文件名,适用于多系统,巴适!

来源:互联网 收集:自由互联 发布时间:2022-08-10
对于下边两种路径: exportPath=“C:\Users\93676\Desktop\测试.docx” --windows系统路径 exportPath="/Users/93676/Desktop/测试1.docx" --linux系统路径 都可以使用如下两行代码解决 File tempFile = new File(export


对于下边两种路径:
exportPath=“C:\Users\93676\Desktop\测试.docx” --windows系统路径
exportPath="/Users/93676/Desktop/测试1.docx" --linux系统路径

都可以使用如下两行代码解决
File tempFile = new File(exportPath.trim());
System.out.println(tempFile.getName());


上一篇:Java输出Pdf(2021)集成springboot
下一篇:没有了
网友评论