Eclipse出现找不到路径问题,怎么解决

Eclipse出现找不到路径问题,怎么解决,第1张

解决方法

1、不升级adt版本(暂为099),把platform-tools文件夹下的adbexe文件拷贝到tools文件夹下,并把platform-tools文件夹的路径添加到环境变量path中去,然后就可以了(记得重启eclipse)

2、升级adt版本到1001(建议把adt下载到本地安装,然后卸载旧版本的adt,再安装新的),这样就可解决这个问题。

getClass()getResource() 方法获得相对路径( 此方法在jar包中无效。返回的内容最后包含/)

例如 项目在/D:/workspace/MainStream/Test

在javaProject中,getClass()getResource("/")getFile()toString() 返回:/D:/workspace/MainStream/Test/bin/

public String getCurrentPath(){  

       //取得根目录路径  

       String rootPath=getClass()getResource("/")getFile()toString();  

       //当前目录路径  

       String currentPath1=getClass()getResource("")getFile()toString();  

       String currentPath2=getClass()getResource("")getFile()toString();  

       //当前目录的上级目录路径  

       String parentPath=getClass()getResource("/")getFile()toString();  

         

       return rootPath;         

  

   }

参考资料:

>

和普通Java程序一样

package com;

public class Foo {

private String userName;

public Foo() {

// TODO Auto-generated constructor stub

}

public String getUserName() {

return userName;

}

public void setUserName(String userName) {

thisuserName = userName;

}

public void outPrint() {

Systemoutprintln("outPrint");

}

}public static void main(String[] args) throws ClassNotFoundException, NoSuchMethodException, SecurityException, InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException {

// TODO Auto-generated method stub

Class<> fooClass = ClassforName("comFoo");

for (int i = 0; i < (fooClassgetDeclaredMethods())length; i++) {

Systemoutprintln(fooClassgetMethods()[i]);

}

/for (int i = 0; i < fooClassgetDeclaredFields()length; i++) {

Systemoutprintln(fooClassgetDeclaredFields()[i]);

}/

for (Field field : fooClassgetDeclaredFields()) {

Systemoutprintln(field);

}

Method out = fooClassgetDeclaredMethod("outPrint");

Method get = fooClassgetDeclaredMethod("getUserName");

Method set = fooClassgetDeclaredMethod("setUserName", Stringclass);

//Foo foo = new Foo();

Object foo = fooClassnewInstance();

outinvoke(foo);

setinvoke(foo, "BO");

Systemoutprintln(getinvoke(foo));

}

这里面我把se跟ee方面获取路径的给你列举出来了,希望对你有用

 Java中使用的路径,分为两种:绝对路径和相对路径。归根结底,Java本质上只能使用绝对路径来寻找资源。所有的相对路径寻找资源的方法,都不过是一些便利方法。不过是API在底层帮助我们构建了绝对路径,从而找到资源的!

在开发Web方面的应用时, 经常需要获取服务器中当前WebRoot的物理路径。

如果是Servlet , Action , Controller, 或者Filter , Listener , 拦截器等相关类时, 我们只需要获得ServletContext, 然后通过ServletContextgetRealPath("/")来获取当前应用在服务器上的物理地址。

如果在类中取不到ServletContext时,有两种方式可以做到:

1)利用Java的类加载机制:调用 XXXclassgetClassLoader()getResource(""); 方法来获取到ClassPath , 然后处理获得WebRoot目录。

这种方式只能是该class在WebRoot/WEB-INF/classes下才能生效, 如果该class被打包到一个jar文件中, 则该方法失效。这时就应该用下面一种方式。

2)spring框架的思路,在WEB-INF/webxml中,创建一个webAppRootKey的param,指定一个值(默认为webapproot)作为键值,然后通过Listener, 或者Filter,或者Servlet 执行String webAppRootKey = getServletContext()getRealPath("/"); 并将webAppRootKey对应的webapproot 分别作为Key,Value写到System Properties系统属性中。之后在程序中通过SystemgetProperty("webapproot")来获得WebRoot的物理路径。

根据第二种的思路,我们还可以再扩展一下。不过对于在部署在一台服务器中的应用来说,若还不是你所需请再往下看。

下面是一些得到classpath和当前类的绝对路径的一些方法。你可使用其中的一些方法来得到你需要的资源的绝对路径:

1DebitNoteActionclassgetResource("")

得到的是当前类FileTestclass文件的URI目录。不包括自己!

如:file:/D:/eclipse/springTest/WebRoot/WEB-INF/classes/

atacarnet/src/com/evi/modules/atacarnet/action/

2DebitNoteActionclassgetResource("/")

得到的是当前的classpath的绝对URI路径。

如:file:/D:/eclipse/springTest/WebRoot/WEB-INF/classes/

3ThreadcurrentThread()getContextClassLoader()getResource("")

得到的也是当前ClassPath的绝对URI路径

如:file:/D:/eclipse/springTest/WebRoot/WEB-INF/classes/

推荐使用该方法获取。

4DebitNoteActionclassgetClassLoader()getResource("") 或ClassLoadergetSystemResource("")

得到的也是当前ClassPath的绝对URI路径。

如:file:/D:/eclipse/springTest/WebRoot/WEB-INF/classes/

5取得服务器相对路径

SystemgetProperty("userdir")

例如:E:\apache-tomcat-5516\apache-tomcat-5516\bin

6取得项目中的绝对路径

一般用requestgetRealPath("/")或requestgetRealPath("/config/")

但现在不提倡使用requestgetRealPath("/")了,大家可试用ServletContextgetRealPath("/")方法得到Web应用程序的根目录的绝对路径。

要取得src的文件非常容易,因为src是默认的相对目录,比如你说要取得src下com目录的testjava文件,你只需要这样就够了

File f = new File(com/testjava);

但如果我要取得不在src目录或者WebRoot目录下的文件呢,而是要从src或者WebRoot同级的目录中取呢,比如说doc吧。

我的硬方法是这样实现的:

String path = thisgetServletContext()getRealPath("/");

Properties p = new Properties();

pload(new FileInputStream(new File(pathsubstring(0,(pathlastIndexOf("\\WebRoot") + 1)) + "doc/dbproperties")));

Systemoutprintln(pgetProperty("driverName"));

-------------------------------

另:Request中getContextPath、getServletPath、getRequestURI、getRequestURL、getRealPath的区别

假定你的web application 名称为news,你在浏览器中输入请求路径:>

Eclipse是软件开发中最常用的一个软件之一,下面我们来看一下,如何在Eclipse中查看编译之后的class文件的存储路径。

工具/原料

Eclipse

方法/步骤

1、打开Eclipse,选中一个类名,如图所示:

2、此时按住快捷键:Ctrl+Shift+R,会出现java文件,如图所示:

3、如果没有出现class文件,那么点击右上方的三角形,选择Show Derived Resources,即可出现class文件,如图所示:

4、双击class文件可查看其内部代码,如图所示:

5、此时按住快捷键Alt+Enter ,即可查看class文件存储路径,如图所示:

6、此时把Location后面的路径复制到本地盘符中就可以查看到class文件。

最原始的方法可以遍历所有盘符文件

public class Path

{

private final List<File> list=new ArrayList<File>();

private String directory;

public Path(String s)

{

thisdirectory=s;

}

private void genPath()

{

File[] roots=FilelistRoots();

for(File root:roots)

searchExists(root);

}

private void searchExists(File file)

{

String tempPath=filegetAbsolutePath();

if(tempPathcontains(directory)

&&(tempPathsubstring(tempPathlastIndexOf(directory))equals(directory)))

listadd(file);

if(fileisDirectory()&&filelist()!=null)

{

File[] files=filelistFiles();

for(File f:files)

{

searchExists(f);

}

}

}

public void listPath()

{

genPath();

for(File file:list)

Systemoutprintln(filegetAbsolutePath());

}

public static void main(String[] args) throws UnsupportedEncodingException

{

Path p=new Path("CS16");

plistPath();

}

}

测试正确,但性能太差,考虑用好的文件查找算法和多线程来作

以上就是关于Eclipse出现找不到路径问题,怎么解决全部的内容,包括:Eclipse出现找不到路径问题,怎么解决、通过java获取当前项目路径、用Eclipse写Java,反射的代码改写到哪里~谢谢等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9777528.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-01
下一篇 2023-05-01

发表评论

登录后才能评论

评论列表(0条)

保存