码迷,mamicode.com
首页 > 编程语言 > 详细

java ,js获取web工程路径

时间:2014-07-16 13:37:16      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   java   color   strong   

一、java获取web工程路径

       1),在servlet可以用一下方法取得:

  request.getRealPath(“/”) 例如:filepach = request.getRealPath(“/”) ”//upload//”;

  2),不从jsp,或servlet中获取,只从普通java类中获取:

  String path =

  getClass().getProtectionDomain().getCodeSource().getLocation().getPath();

  SAXReader() saxReader = new SAXReader();

  if(path.indexOf(“WEB-INF”)>0){

  path = path.substring(0,path.indexOf(“/WEB-INF/classes”) 16);

  // ‘/WEB-INF/classes’为16位

  document = saxReader.read(path filename);

  }else{

  document = saxReader.read(getClass().getResourceAsStream(filename));

  }

  weblogic tomcat 下都有效

  String path =

  getClass().getProtectionDomain().getCodeSource().getLocation().getPath();

  <!--EndFragment-->

 

<%
//此方法是通用的,可以获取不同系统中应用项目的根目录
String path = request.getContextPath();
String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() +  path + "/";
%>

二、js获取web工程路径

       var strFullPath=window.document.location.href;
         var strPath=window.document.location.pathname;
         var pos=strFullPath.indexOf(strPath);
         var prePath=strFullPath.substring(0,pos);
         var postPath=strPath.substring(0,strPath.substr(1).indexOf(‘/‘)+1);
         var webPath=prePath+postPath;

java ,js获取web工程路径,布布扣,bubuko.com

java ,js获取web工程路径

标签:des   style   blog   java   color   strong   

原文地址:http://www.cnblogs.com/tancp/p/3848432.html

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