欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Java获取文件列表怪状 hprose 

程序员文章站 2022-05-13 08:10:49
...
File file = new File(path);
			if (file.isDirectory() && file.exists()) {
				String[] files = file.list();
				for (String string : files) {
					updateObject = new UpdateObject();
					updateObject.setName(string);
					System.out.println(file.getPath() + "/" + string);


结果是这样的:
D:\F\work\java\Workspaces\Happy\xhsd_hprose\WebRoot\WEB-INF\classes\pda/xhsd - Copy (2).exe
D:\F\work\java\Workspaces\Happy\xhsd_hprose\WebRoot\WEB-INF\classes\pda/xhsd - Copy (3).exe
D:\F\work\java\Workspaces\Happy\xhsd_hprose\WebRoot\WEB-INF\classes\pda/xhsd - Copy.exe
D:\F\work\java\Workspaces\Happy\xhsd_hprose\WebRoot\WEB-INF\classes\pda/xhsd.exe


再次测试:
OK啦
相关标签: hprose