在WEB项目中如何获得根目录
4个回答
展开全部
Do you mean the project root Name?if so:
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
//out.print(basePath); //test
And this is automatic by MyEclipse
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
//out.print(basePath); //test
And this is automatic by MyEclipse
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
直接给你发代码呢!!O(∩_∩)O~
package dao;
import java.io.File;
public class uu {
public static void main(String[] args){
File[] roots = File.listRoots();
for (int i=0; i<roots.length; i++){
System.out.println(roots[i]);
}
}
}
package dao;
import java.io.File;
public class uu {
public static void main(String[] args){
File[] roots = File.listRoots();
for (int i=0; i<roots.length; i++){
System.out.println(roots[i]);
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
这两个有一个 那个我网了自己 试一下吧
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
这两个有一个 那个我网了自己 试一下吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
request.getRealPath("/");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询