本文整理了Java中jodd.io.FileUtil.toFileName()
方法的一些代码示例,展示了FileUtil.toFileName()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。FileUtil.toFileName()
方法的具体详情如下:
包路径:jodd.io.FileUtil
类名称:FileUtil
方法名:toFileName
[英]Converts file URLs to file name. Accepts only URLs with 'file' protocol. Otherwise, for other schemes returns null
.
[中]将文件URL转换为文件名。仅接受具有“文件”协议的URL。否则,对于其他方案,返回null
。
代码示例来源:origin: redisson/redisson
/**
* Converts file URLs to file. Ignores other schemes and returns <code>null</code>.
*/
public static File toFile(URL url) {
String fileName = toFileName(url);
if (fileName == null) {
return null;
}
return file(fileName);
}
代码示例来源:origin: oblac/jodd
/**
* Converts {@link File} {@link URL}s to {@link File}. Ignores other schemes and returns {@code null}.
*/
public static File toFile(final URL url) {
String fileName = toFileName(url);
if (fileName == null) {
return null;
}
return file(fileName);
}
代码示例来源:origin: org.jodd/jodd-core
/**
* Converts {@link File} {@link URL}s to {@link File}. Ignores other schemes and returns {@code null}.
*/
public static File toFile(final URL url) {
String fileName = toFileName(url);
if (fileName == null) {
return null;
}
return file(fileName);
}
内容来源于网络,如有侵权,请联系作者删除!