中获取文件的文件扩展名

中获取文件的文件扩展名

本文介绍了如何在 Java 中获取文件的文件扩展名?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

澄清一下,我不是在寻找 MIME 类型.

Just to be clear, I'm not looking for the MIME type.

假设我有以下输入:/path/to/file/foo.txt

我想要一种方法来分解此输入,特别是将扩展名分解为 .txt.在 Java 中是否有任何内置的方法可以做到这一点?我想避免编写自己的解析器.

I'd like a way to break this input up, specifically into .txt for the extension. Is there any built in way to do this in Java? I would like to avoid writing my own parser.

推荐答案

在这种情况下,使用 FilenameUtils.getExtension 来自 Apache Commons IO

In this case, use FilenameUtils.getExtension from Apache Commons IO

以下是如何使用它的示例(您可以指定完整路径或仅指定文件名):

Here is an example of how to use it (you may specify either full path or just file name):

import org.apache.commons.io.FilenameUtils;

// ...

String ext1 = FilenameUtils.getExtension("/path/to/file/foo.txt"); // returns "txt"
String ext2 = FilenameUtils.getExtension("bar.exe"); // returns "exe"

Maven 依赖:

<dependency>
  <groupId>commons-io</groupId>
  <artifactId>commons-io</artifactId>
  <version>2.6</version>
</dependency>

Gradle Groovy DSL

Gradle Groovy DSL

implementation 'commons-io:commons-io:2.6'

Gradle Kotlin DSL

Gradle Kotlin DSL

implementation("commons-io:commons-io:2.6")

其他 https://search.maven.org/artifact/commons-io/commons-io/2.6/jar

这篇关于如何在 Java 中获取文件的文件扩展名?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 09:15