文章列表
在action中获取服务器上的文件的地址
- 博客分类:
- JAVA
List<String> listFile = new ArrayList<String>(); //获取服务器上的地址 public List<String> listAll(File file) { //服务器的根路径 String savePath = ServletActionContext.getServletContext().getRealPath( "/"); //判断是否为文件夹 if (file.isDirectory()) { File[] fs = file.listFiles(); for (int i = 0; ...
Java获取文件大小
- 博客分类:
- JAVA
public static class GetFileSize
{
public long getFileSizes(File f) throws Exception{//取得文件大小
long s=0;
if (f.exists()) {
FileInputStream fis = null;
fis = new FileInputStream(f);
s= fis.available();
} else {
f.createNewFile();
System.out.println("文件不存在");
}
return s;
}
// 递归
...