码迷,mamicode.com
首页 > 其他好文 > 详细

路径获取

时间:2014-06-15 16:27:14      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:class   java   ext   get   文件   string   

1、项目根目录(tomcat、web项目)

String path = ServletActionContext.getServletContext().getRealPath("");
System.out.println(path);

想要获取图片存放的位置,则为String path = ServletActionContext.getServletContext().getRealPath("images");


      

2、java代码编译后class文件所在的路径(classpath路径)
String serverDir = this.getClass().getClassLoader().getResource("").getPath();
System.out.println(serverDir);

路径获取,布布扣,bubuko.com

路径获取

标签:class   java   ext   get   文件   string   

原文地址:http://www.cnblogs.com/jingyunyb/p/3785813.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!