JSP获取文件信息
发布时间:2013-09-30 17:23 来源/作者:藕码网 分类:扩展区
TAG标签:
我们经常需要操作文件系统,那么如何查一个文件的基本信息呢?本文给出一个例子。
- 运行环境:JDK1.6+Tomcat6.0 + Eclipse
- 授权方式:开源
- 下载积分:免费
- 推荐等级:★★★★
- 更新时间:2013-09-30
- 演示地址:暂无
- 代码详情
- 用户评论
- 相关代码
-
我们经常需要操作文件系统,那么如何查一个文件的基本信息呢?本文给出一个例子。
示例代码:
System.out.println("Name: "+f.getName());
System.out.println("Path: "=f.getPath());
if (f.exists()) {
System.out.println("File exists.");
System.out.print((f.canRead() ?" and is Readable":"")); System.out.print((f.cnaWrite()?" and is Writeable":"")); System.out.println("."); System.out.println("File is " + f.lenght() = " bytes."); } else { System.out.println("File does not exist."); } } }
-
最新评论
菜单/ Menu
热门下载/ HOT