`

java.lang.IllegalArgumentException: URI scheme is not "file" 最后更新时间 解决

 
阅读更多

http://blog.csdn.net/java05/article/details/4001566

 

为了获取文件的最后更新时间:

 

		public static String getLastModified(String file) throws URISyntaxException
		{
			
			File indexfile = new File(new URI(file));
			//System.out.println(indexfile);
			//System.out.println(indexfile.lastModified());
			Date date=new Date(indexfile.lastModified());
			SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd kk:mm");
			String time=sdf.format(date);
			return time;
		}

 

 

Unix下调用:

getLastModified("file:/home/www/jsp/index.jsp");

 

Windows :

getLastModified("file:/D:/soft/apache-tomcat-6.0.33/index.jsp");

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics