- 浏览: 151048 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
jinianjun:
请问加的那个函数是什么意思呢?
Linux下DHCP不能自动获取IP问题解决 -
liujiaoshui:
看来你们都没玩过《天龙八部》,那才真 叫一个坑,MB的,有个3 ...
淘宝,真的好烦啊。 -
云中苍月:
呃。。这位仁兄忘性真不小。别怪TB了,自己找个小本本把账号/密 ...
淘宝,真的好烦啊。 -
finallygo:
这也是我不用支付宝的原因
淘宝,真的好烦啊。 -
三单联咖啡色:
涉及到个人财产,还是复杂点的好,自己修改密码都那么麻烦,那其他 ...
淘宝,真的好烦啊。
写道
fileName.replaceAll(".*\\.", "")
评论
21 楼
greatghoul
2011-05-18
感觉iteye里面的越来越多人喜欢扯蛋。。。
20 楼
greatghoul
2011-05-18
duronshi 写道
freish 写道
获取扩展名有啥意义?
赞同,楼主这样获取文件扩展名有何意义?
如果一个exe文件,我将文件后缀改成jpg,那按楼主的方法获取到的是什么?exe or jpg?
如果真的想获取文件扩展名,建议通过文件头里面的标识来获取,可能正确性会高一点。
文件头里的标识不见得就是文件的真实扩展名,这种方法很不准确吧。
19 楼
greatghoul
2011-05-18
yangyi 写道
性能和可读性俱不佳
觉得这方法挺不错,也没有觉得可读性有什么差的,退一步讲,即便差,加个注释就好了。
要说性能吧,那要看什么场景了,脱离的应用场景空谈性能也没有什么意思。
好用就行了。
18 楼
duronshi
2011-05-18
freish 写道
获取扩展名有啥意义?
赞同,楼主这样获取文件扩展名有何意义?
如果一个exe文件,我将文件后缀改成jpg,那按楼主的方法获取到的是什么?exe or jpg?
如果真的想获取文件扩展名,建议通过文件头里面的标识来获取,可能正确性会高一点。
17 楼
xiaobao0501
2011-05-12
org.apache.commons.lang.StringUtils.substringAfterLast("index.htm", ".") ;
16 楼
luciferdevil
2011-05-12
田智伟 写道
貌似可以使用String的 endWith不是来个更简洁?
for example?
15 楼
田智伟
2011-05-12
貌似可以使用String的 endWith不是来个更简洁?
14 楼
zhkchi
2011-05-12
你们老是喜欢喷别人嘛?
13 楼
lyy3323
2011-05-12
indexOfExtension 方法呢,老兄?
12 楼
guoqingcun
2011-05-12
/**
* Gets the extension of a filename.获取文件名
* <p>
* This method returns the textual part of the filename after the last dot.
* There must be no directory separator after the dot.
* 文件名例子:
* foo.txt --> "txt"
* a/b/c.jpg --> "jpg"
* a/b.txt/c --> ""
* a/b/c --> ""
* <p>
* The output will be the same irrespective of the machine that the code is running on.
*
* @param filename the filename to retrieve the extension of.
* @return the extension of the file or an empty string if none exists or <code>null</code>
* if the filename is <code>null</code>.
*/
----------------------------------------------------------------------------------
/**
* Returns the index of the last extension separator character, which is a dot.最后"."位置
* <p>
* This method also checks that there is no directory separator after the last dot.
* To do this it uses {@link #indexOfLastSeparator(String)} which will
* handle a file in either Unix or Windows format.
* <p>
* The output will be the same irrespective of the machine that the code is running on.
*
* @param filename the filename to find the last path separator in, null returns -1
* @return the index of the last separator character, or -1 if there
* is no such character
*/
------------------------------------------------------------------------------------------
/**
* Returns the index of the last directory separator character.最后目录分割符位置(unix or window)
* <p>
* This method will handle a file in either Unix or Windows format.
* The position of the last forward or backslash is returned.
* <p>
* The output will be the same irrespective of the machine that the code is running on.
*
* @param filename the filename to find the last path separator in, null returns -1
* @return the index of the last separator character, or -1 if there
* is no such character
*/
* Gets the extension of a filename.获取文件名
* <p>
* This method returns the textual part of the filename after the last dot.
* There must be no directory separator after the dot.
* 文件名例子:
* foo.txt --> "txt"
* a/b/c.jpg --> "jpg"
* a/b.txt/c --> ""
* a/b/c --> ""
* <p>
* The output will be the same irrespective of the machine that the code is running on.
*
* @param filename the filename to retrieve the extension of.
* @return the extension of the file or an empty string if none exists or <code>null</code>
* if the filename is <code>null</code>.
*/
public static String getExtension(String filename) { if (filename == null) { return null; } int index = indexOfExtension(filename); if (index == -1) { return ""; } else { return filename.substring(index + 1); } }
----------------------------------------------------------------------------------
/**
* Returns the index of the last extension separator character, which is a dot.最后"."位置
* <p>
* This method also checks that there is no directory separator after the last dot.
* To do this it uses {@link #indexOfLastSeparator(String)} which will
* handle a file in either Unix or Windows format.
* <p>
* The output will be the same irrespective of the machine that the code is running on.
*
* @param filename the filename to find the last path separator in, null returns -1
* @return the index of the last separator character, or -1 if there
* is no such character
*/
public static int indexOfExtension(String filename) { if (filename == null) { return -1; } int extensionPos = filename.lastIndexOf(EXTENSION_SEPARATOR); int lastSeparator = indexOfLastSeparator(filename); return (lastSeparator > extensionPos ? -1 : extensionPos); }
------------------------------------------------------------------------------------------
/**
* Returns the index of the last directory separator character.最后目录分割符位置(unix or window)
* <p>
* This method will handle a file in either Unix or Windows format.
* The position of the last forward or backslash is returned.
* <p>
* The output will be the same irrespective of the machine that the code is running on.
*
* @param filename the filename to find the last path separator in, null returns -1
* @return the index of the last separator character, or -1 if there
* is no such character
*/
public static int indexOfLastSeparator(String filename) { if (filename == null) { return -1; } int lastUnixPos = filename.lastIndexOf(UNIX_SEPARATOR); int lastWindowsPos = filename.lastIndexOf(WINDOWS_SEPARATOR); return Math.max(lastUnixPos, lastWindowsPos); }
11 楼
zhang34082
2011-05-12
刚翻了下开源包commons-io-1.4.jar中FilenameUtils类中取扩展名的实现
public static String getExtension(String filename)
{
if (filename == null) {
return null;
}
int index = indexOfExtension(filename);
if (index == -1) {
return "";
}
return filename.substring(index + 1);
}
public static String getExtension(String filename)
{
if (filename == null) {
return null;
}
int index = indexOfExtension(filename);
if (index == -1) {
return "";
}
return filename.substring(index + 1);
}
10 楼
003
2011-05-12
pollyduan 写道
yangyi 写道
性能和可读性俱不佳
还不如fileName.substring(fileName.lastIndexOf(".")+1)来的痛快。
痛快是痛快了,但是当心异常,哈哈,遇上系统文件hosts就崩了
9 楼
nakupanda
2011-05-12
怎么写直观性能又好呢 ?
8 楼
Reset
2011-05-12
楼主刚学会正则 写的一个“Hello, World”鉴定完毕
7 楼
freish
2011-05-12
获取扩展名有啥意义?
6 楼
pollyduan
2011-05-12
yangyi 写道
性能和可读性俱不佳
还不如fileName.substring(fileName.lastIndexOf(".")+1)来的痛快。
5 楼
NanguoCoffee
2011-05-12
helin 写道
grandboy 写道
helin 写道
暂不追求速度。
不追求速度,可读性又不好,为什么要这么写呢?要是我们的员工写成这样,肯定被我骂的。
你会要求你的员工对这句话也加注释吗?
别人说的意思是不能这样获取后缀。
而你的回答却是以这行代码为前提。
4 楼
helin
2011-05-12
grandboy 写道
helin 写道
暂不追求速度。
不追求速度,可读性又不好,为什么要这么写呢?要是我们的员工写成这样,肯定被我骂的。
你会要求你的员工对这句话也加注释吗?
3 楼
grandboy
2011-05-12
helin 写道
暂不追求速度。
不追求速度,可读性又不好,为什么要这么写呢?要是我们的员工写成这样,肯定被我骂的。
2 楼
helin
2011-05-12
暂不追求速度。
发表评论
-
SLF4J这东西太邪恶了
2011-09-02 23:54 929版本弄得乱七八遭的。动不动就报错。 老子恨他不是一年两年了! ... -
每秒多少次是怎么算出来的?
2011-08-05 15:47 1121看到有的大拿写他写的程序执行效率高,每秒多少次,多少次,这个次 ... -
log4j.properties记录
2010-04-06 15:21 939log4j.rootLogger=All,A1,A2,A3 ... -
全面的汉字转拼音与读音包
2009-10-30 23:28 1772最近因需要做汉字转拼音的一个小功能,上网找了一些,不是很好用, ... -
JFreeChart1.0.13API
2009-04-26 01:34 1557方便自己看,也拿出来,方便大家看:)希望有用吧~ -
JTree 的装饰器演示
2009-01-05 10:13 1411今天工作中,遇到小问 ... -
JTree with CheckBox
2009-01-05 08:59 3374Let me explain what is "JT ... -
全半角转换
2008-12-07 21:09 1073[size=medium]/** * 半角转全角 ... -
Java调用jacob出错问题:java.library.path解决
2008-11-10 10:22 8284关于java使用jacob.jar调用word的配置问题 最 ... -
JMF
2008-11-08 23:51 1880Java术语 术语名称:Java媒体框架(JMF) ... -
使用JMF播放音乐
2008-11-08 23:48 4099[size=medium]转载的!! JMF现在还不支持WM ... -
处理文件夹有空格问题及按系统方式打开文件
2008-10-31 09:37 3085[size=medium]取得文件路径: String fil ... -
创建数组的几种方式
2008-10-26 14:35 1322在C语言中: Example: 1、 int nu ... -
java中实现IP地址的各种表现形式之间的转换
2008-10-24 11:34 1399[size=medium]class ip { pri ... -
HttpClient之Session维持
2008-10-23 18:15 10716由于需要,用到了HttpClient在网上查阅了很多资料 ... -
在Swing UI界面定义默认获得焦点的组件
2008-10-23 09:49 8941最近写了个小的UI界面的程序.程序运行后,为方便使用,应该自动 ... -
Serializable java序列化
2008-10-21 14:57 1502[size=medium]Bean Serializable ...
相关推荐
VB简单获取文件扩展名,用法很简单:选择要获得扩展名的文件,点击操作按钮,最后就显示文件的扩展名了,简要说一下原理:从文件名的长度到文件名的第一个字符作循环,如果当前的字符是".",设置变量Ext的值为i,...
php简单获取文件扩展名的方法.doc
在PHP中,获取文件后缀名通常可以通过字符串操作函数来完成,其中最常用的是`strrpos()`和`substr()`这两个函数。`strrpos()`函数用于查找字符串最后一次出现的位置,而`substr()`则用于截取字符串的一部分。具体...
这是一个简单的小程序,一直文件的全名,然后通过C语言编程获取它的扩展名
文件后缀名,也称为文件扩展名,是文件名中用于标识文件类型的部分,例如.txt、.docx、.jpg等。在操作系统中,后缀名通常用来决定如何处理一个文件,比如应该用哪个应用程序打开它。 在易语言中,实现这个功能需要...
在IT领域,特别是软件开发中,经常会遇到需要遍历文件夹并获取文件后缀名的情况。本文将详细介绍如何实现这一功能,并通过提供的代码片段进行深入分析。 #### 核心知识点一:获取文件标题与后缀名 在给出的代码...
这个过程可以通过编程实现,下面将详细讲解如何根据后缀名获取文件列表。 首先,我们需要了解什么是文件后缀名。文件后缀名是文件名的一部分,位于文件名和其扩展名之间的点字符"."之后。它通常用来标识文件的类型...
对于每个文件,我们通过`Path.GetFileNameWithoutExtension()`方法获取文件名(不包括后缀),然后拼接新的后缀名得到新文件名。`Path.Combine()`用于构建新文件的完整路径。最后,我们使用`File.Move()`方法移动...
如果有参数,`for %%i in (%*) do`循环遍历所有拖放的文件,`%%~xi`获取文件的扩展名,`%%~ni`获取文件的基本名(不包含扩展名)。然后通过`echo`命令输出相关信息。 **CMD命令行** 在Windows环境中,cmd.exe是...
- 首先使用`System.IO.Path.GetExtension`获取文件扩展名。 - 使用`ToLower()`方法将扩展名转换为小写,以便于比较。 - 判断扩展名是否为`.xls`或`.xlsx`。 - 如果不符合条件,则显示错误消息并提前退出方法。 ####...
文件后缀名,也称为文件扩展名,是操作系统用来标识文件类型的重要信息。在计算机世界里,各种类型的文件都有其特定的后缀名,比如文本文件的".txt",图片文件的".jpg"或".png",程序文件的".exe"等。文件后缀名查询...
如果文件的当前扩展名与新的扩展名不同,我们就使用`MoveTo`方法将文件移动到新位置(这实际上就是更改文件名)并打印一条消息。 需要注意的是,批量修改文件后缀名可能会对文件内容产生影响,特别是当不同格式的...
在PHP编程中,获取文件扩展名是一项常见的任务,特别是在处理上传文件、文件操作或路径解析时。本篇文章将深入探讨如何使用PHP简单有效地获取文件扩展名,并提供一个实用的函数示例来帮助开发者理解这一过程。 文件...
在这个场景中,"批量修改文件后缀名(源码)"是一个用VS2008开发的程序,它允许用户一次性更改多个文件的扩展名。这样的工具对于整理文件库,统一文件格式,或者进行特定的数据转换都十分有用。 VS2008,全称Visual...
这意味着循环将在遇到第一个`.`时停止,即文件扩展名的起始位置。 3. **返回结果**:`Filename2 = Left(PathName, x - 1)`这行代码用于获取从文件名的起始位置到`.`之前的字符串,并作为函数的返回值。这里使用了`...
// 使用substring方法获取文件扩展名 // fileName.lastIndexOf(".")找到最后一个"."的位置,截取从该位置到字符串末尾的部分 String fileType = fileName.substring(fileName.lastIndexOf(".") + 1, fileName....
在Delphi编程环境中,更改文件扩展名是一项常见的操作,尤其在创建临时文件、加密或混淆文件格式时。本文将深入探讨如何使用Delphi来实现这一功能,并分享一些相关的编程技巧和注意事项。 首先,理解文件扩展名的...
3. **检查和修改后缀名**:对每个`FileInfo`对象,使用`FileName`属性获取文件名(包括扩展名),然后使用`Replace()`方法找到最后一个"."并替换为新的后缀名。例如,`fileName.Replace(".old", ".new")`将".old...
首先,方法一通过自定义函数get_ext来实现获取文件扩展名。这个函数通过explode函数以点号(".")作为分隔符将文件名分割成数组,然后利用array_pop函数取出数组中的最后一个元素,也就是文件的扩展名。这种方法简单...