博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java获取指定文件夹下的所有文件名
阅读量:6147 次
发布时间:2019-06-21

本文共 995 字,大约阅读时间需要 3 分钟。

package com.henu.util;import java.io.File;public class TakeFilePathAndName {    public static void main(String[] args) {        // This is the path where the file's name you want to take.        String path = "C://Documents and Settings//yinxm//デスクトップ//TestFile";        getFile(path);    }    private static void getFile(String path) {        // get file list where the path has        File file = new File(path);        // get the folder list        File[] array = file.listFiles();        for (int i = 0; i < array.length; i++) {            if (array[i].isFile()) {                // only take file name                System.out.println("^^^^^" + array[i].getName());                // take file path and name                System.out.println("#####" + array[i]);                // take file path and name                System.out.println("*****" + array[i].getPath());            } else if (array[i].isDirectory()) {                getFile(array[i].getPath());            }        }    }}

 

转载地址:http://wsmya.baihongyu.com/

你可能感兴趣的文章
c++面向对象的一些问题1 0
查看>>
直播视频流技术名词
查看>>
IOC —— AOP
查看>>
比特币现金将出新招,推动比特币现金使用
查看>>
数据库的这些性能优化,你做了吗?
查看>>
某大型网站迁移总结(完结)
查看>>
部署SSL证书后,网页内容造成页面错误提示的处理办法
查看>>
MS SQLSERVER通用存储过程分页
查看>>
60.使用Azure AI 自定义视觉服务实现物品识别Demo
查看>>
Oracle 冷备份
查看>>
jq漂亮实用的select,select选中后,显示对应内容
查看>>
C 函数sscanf()的用法
查看>>
python模块之hashlib: md5和sha算法
查看>>
解决ros建***能登录不能访问内网远程桌面的问题
查看>>
pfsense锁住自己
查看>>
vsftpd 相关总结
查看>>
售前工程师的成长---一个老员工的经验之谈
查看>>
Get到的优秀博客网址
查看>>
【Git入门之四】操作项目
查看>>
老男孩教育每日一题-第107天-简述你对***的理解,常见的有哪几种?
查看>>