欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

如何通过java获取文件名和扩展名

时间:2020-10-18 11:10:21|栏目: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);
  }
}

上一篇:如何更优雅地获取spring boot yml中的值

栏    目:JAVA代码

下一篇:Java源码解析阻塞队列ArrayBlockingQueue介绍

本文标题:如何通过java获取文件名和扩展名

本文地址:http://www.codeinn.net/misctech/13065.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有