Java 怎么通过URL引用得到真正的文件名

Java 怎么通过URL引用得到真正的文件名,第1张

// 如果得到项目中的文件路径 统一资源定位符 通过文件名获取文件的绝对路径

URL url = Prop2.class.getResource("/a.properties")    //import java.net.URL

System.out.println(url.getPath())

/**

* 读取某个文件夹下的所有文件

*/

public static boolean readfile(String filepath) throws FileNotFoundException, IOException {

try {

File file = new File(filepath)

if (!file.isDirectory()) {

System.out.println("文件")

System.out.println("path=" + file.getPath())

System.out.println("absolutepath=" + file.getAbsolutePath())

System.out.println("name=" + file.getName())

} else if (file.isDirectory()) {

System.out.println("文件夹")

String[] filelist = file.list()

for (int i = 0i <filelist.lengthi++) {

File readfile = new File(filepath + "\\" + filelist[i])

if (!readfile.isDirectory()) {

System.out.println("path=" + readfile.getPath())

System.out.println("absolutepath="

+ readfile.getAbsolutePath())

System.out.println("name=" + readfile.getName())

} else if (readfile.isDirectory()) {

readfile(filepath + "\\" + filelist[i])

}

}

}

} catch (FileNotFoundException e) {

System.out.println("readfile() Exception:" + e.getMessage())

}

return true

}

有两种获取链接文件名的方法:

第一种:从连接URL,从描述中获取

第二种:如果第一种获取不到,可以从URL地址中获取

比如这种地址:

http://book.booktxt.com/txtbuk/20130421/xuanhuan/20130421133601180.rar


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/7921033.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-11
下一篇 2023-04-11

发表评论

登录后才能评论

评论列表(0条)

保存