码迷,mamicode.com
首页 > Web开发 > 详细

获取web应用路径 // "/" 表示class 根目录

时间:2014-08-04 14:11:57      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:des   io   ar   linux   应用   window   res   c   

/**
* 获取web应用路径
* @Description : 方法描述
* @Method_Name : getRootPath
* @return
* @return : String
* @Creation Date : 2013-12-13 下午9:09:28
* @version : v1.00
* @throws UnsupportedEncodingException
* @Author : zyn

* @Update Date :
* @Update Author : zyn
*/
public static String getRootPath() throws UnsupportedEncodingException {
String classPath = WebHelper.class.getClassLoader().getResource("/").getPath();
// "/" 表示class 根目录
String rootPath = "";
// windows下
if ("\\".equals(File.separator)) {
rootPath = classPath.substring(1, classPath.indexOf("/WEB-INF/classes"));
rootPath = rootPath.replace("/", "\\");
rootPath = URLDecoder.decode(rootPath, "UTF-8");
}
// linux下
if ("/".equals(File.separator)) {
rootPath = classPath.substring(0, classPath.indexOf("/WEB-INF/classes"));
rootPath = rootPath.replace("\\", "/");
rootPath = URLDecoder.decode(rootPath, "UTF-8");
}
return rootPath;
}

获取web应用路径 // "/" 表示class 根目录,布布扣,bubuko.com

获取web应用路径 // "/" 表示class 根目录

标签:des   io   ar   linux   应用   window   res   c   

原文地址:http://www.cnblogs.com/q446223455/p/3889871.html

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