对于下边两种路径: 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());