Ⅰ java項目的jar在哪個目錄下
是web項目嗎?web項目中的WebRoot下面的Webinfo下面的lib裡面。
Ⅱ [java]打包成jar之後找不到文件FileNotFoundException
Java在WEB項目中獲取文件路徑 .
jsp中獲得文件路徑servlet中獲得文件路徑java中獲得文件路徑jsp中獲得文件路徑
1、根目錄所對應的絕對路徑:request.getRequestURI();
2、文件的絕對路徑:application.getRealPath(request.getRequestURI())
3、當前web應用的絕對路徑:application.getRealPath("/")
4、取得請求文件的上層目錄:
newFile(application.getRealPath(request.getRequestURI())).getParent()
servlet中獲得文件路徑
1、根目錄所對應的絕對路徑:request.getServletPath()
2、文件的絕對路徑:
request.getSession().getServletContext().getRealPath(request.getRequestURI())
3、當前web應用的絕對路徑:servletConfig.getServletContext().getRealPath("/")
註:ServletContext對象獲得幾種方式:
javax.servlet.http.HttpSession.getServletContext()
javax.servlet.jsp.PageContext.getServletContext()
javax.servlet.ServletConfig.getServletContext()
java中獲得文件路徑
1、Thread.currentThread().getContextClassLoader().getResource("").toURI().getPath()
2、MyClass.class.getClassLoader().getResource("").toURI().getPath()
3、ClassLoader.getSystemResource("").toURI().getPath()
4、MyClass.class.getResource("").toURI().getPath()
5、MyClass.class.getResource("/").toURI().getPath()
6、newFile("/").getAbsolutePath().toURI().getPath()
7、System.getProperty("user.dir").toURI().getPath()
希望能幫到你
Ⅲ java jar包獲取當前路徑是哪個路徑
獲取jar包的路徑的方法:
xxxxx.class.getProtectionDomain().getCodeSource().getLocation()
其中xxxxx是類名
Ⅳ 在java下如何訪問將要打包成的jar所在的路徑
例如:Java Web Project 中,導入JDBC的jar包。
一、首先將jar包存放到 lib 目錄下。
Build Path 是載入jar包路徑。
Ⅳ Java如何獲取當前的jar包路徑以及如何讀取j
舉例:
把配置來文件ccc.xml放到編源譯路徑,如src/com.aaa.aa下面,然後再根據
String rootPath=Xxxx.class.getResource("/").getPath();
獲取到編譯的根路徑,配置文件的地址就是rootPath+"com/aaa/aa/ccc.xml"
Ⅵ JAVA如何在main()中取得當前jar的名字和路徑
java 允許我們定位某個 class 的 CodeSource 。
通過 CodeSource 提供的 Location 信息就能夠找到相關的文件路版徑。權
假設 aa.jar 的 main class 是 Test,通過
new Test().getClass().getProtectionDomain().getCodeSource().getLocation();
可以獲取到jar包的路徑。jar的名稱就好辦了。截取下上面獲取到的路徑字元串就行了。