winform 获取当前项目所在的路径】的更多相关文章

代码: string curAppPath = System.IO.Directory.GetParent(System.Environment.CurrentDirectory).Parent.FullName; 首先通过 System.Environment.CurrentDirectory 可以获取 debug(如果是在debug状态)的路径;如 F:\gis\arcgis_engine\Engine\Engine\bin\Debug 然后用 System.IO.Directory.Get…
近期在做JavaWeb项目相关的东西,差点儿每天都遇到非常多问题,主要是由于自己对JavaWeb方面的知识不是非常清楚,尽量把自己在项目中遇到的问题都记录下来,方便以后查阅. 在我们的项目中有这种须要,当在页面停留时间过长时,自己主动调回主页面first.jsp,所以我就写了个load.js代码文件,然后在每一个jsp页面上都引用它,这样就出现了问题,由于每一个页面不都是在WebRoot的根文件夹下的,有可能是在其子文件夹下,例如以下图所看到的: 所以对于每一个jsp页面所跳转回主页面first…
总结: 方法1: WebApplicationContext webApplicationContext = ContextLoader.getCurrentWebApplicationContext(); ServletContext servletContext = webApplicationContext.getServletContext(); String realPath = servletContext.getRealPath(File.separator);//G:\ty\to…
获取 web 项目的绝对路径 <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %>…
以下几种方法获取当前程序名称或路径: // 获取程序的基目录. System.AppDomain.CurrentDomain.BaseDirectory // 获取模块的完整路径.      // 获取新的Process 组件并将其与当前活动的进程关联的主模块的完整路径,包含文件名(进程名). System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName result: X:\xxx\xxx\xxx.exe (.exe文件所…
// 获取当前项目的目录 File directory = new File("");// 参数为空 String courseFile = directory.getCanonicalPath(); System.out.println(courseFile);//注意返回的是反斜杠标识的目录名 // 获取当前类的目录 URL xmlpath = this.getClass().getClassLoader().getResource(""); System.ou…
一.用Jsp获取 1.获取文件的绝对路径 String file="文件";(例如:data.mdb) String path=application.getRealPath(file); 结果: E:\java_web\workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps\myWebsite\文件 2.获取文件的绝对路径 String p2=request.getRequestURI(); 结…
获取网站根目录的方法有几种如: Server.MapPath(Request.ServerVariables["PATH_INFO"]) Server.MapPath("/")  Server.MapPath("~/")//当前代码文件所在的根目录路径 Server.MapPath("")//当前代码文件所在的目录路径 Server.MapPath(".") Server.MapPath("../…
用HttpServletRequest request获取 request.getSession().getServletContext().getRealPath(""); 上面马赛克的就是项目名称…
java中获取当前服务器地址主要使用到InetAddress这个类 public static void main(String[] args) { try { //用 getLocalHost() 方法创建的InetAddress的对象 InetAddress address = InetAddress.getLocalHost(); System.out.println(address.getHostName());//主机名 System.out.println(address.getCa…