Eclipse 问题 A resource exists with a different case

在使用Eclipse进行开发的时候,出现了如下的问题:

Description Resource Path Location Type

The project was not built due to "A resource exists with a different case: ‘/SeenTaoImp_zhV2/bin/seentao‘.". Fix the problem, then try refreshing this project and building it since it may be inconsistent SeenTaoImp_zhV2  Unknown Java Problem

j解决方案:

1、在项目工程中有多个源码包(source folder) ,在不同的源码包中有相同的报名或者大小写之后一致的包路径。

2、设置编译输出路径可以解决此问题、或者将将java报名改掉。

时间: 2024-10-13 10:47:27

Eclipse 问题 A resource exists with a different case的相关文章

org.eclipse.core.internal.resources.ResourceException: A resource exists with a different case:

在使用Eclipse进行开发的时候,出现了如下的问题: Description Resource Path Location Type The project was not built due to "A resource exists with a different case: '/SeenTaoImp_zhV2/bin/seentao'.". Fix the problem, then try refreshing this project and building it si

eclipse导入maven项目, A resource exists with a different case: '/xxx'.

eclipse 导入maven 项目出现 这是由于你的workspace里有相同的项目, 这时在metadata里可以看到所有的project信息 只需在eclipse的package explorer 视图给已经存在的项目rename就可以导入项目了 这时下面目录中项目名会跟着改变 eclipse导入maven项目, A resource exists with a different case: '/xxx'. 原文地址:https://www.cnblogs.com/moris5013/p

Android -- the project was not built due to a resource exists with a different case...

进行编码时,工程前面莫名有个红X,正当百思不得其解时,发现在[problems]下有如下的消息输出 ------ the project was not built due to a resource exists with a different case... ------ 按照提示对代码再次进行了check,果然是大小写出了问题,具体如下: 包名为:com.example.Android_intent3 但很奇怪的是.java文件中AndroidMaifest.xml中引用该包的地方都变成

Eclipse.Error.gen already exists but is not a source folder.

在Eclipse ADT来开发Android App时会遇到以下问题:"myproject/gen already exists but is not a source folder. Convert to a source folder or rename it" 解决办法是: 1.Right click on the project and go to "Properties" 2.Select "Java Build Path" on th

Eclipse使用及其问题解决方案

Eclipse使用:1.如何把Eclipse关闭提示调出来?可以这样打开这个提示:选择 Windows --Preferences,在左边树上选择“General” --“Startup and Shutdown”,选择“Confirm exit when closing last window ”单击 OK 就可以了 2.Eclipse编辑框右面长度100的位置设置一条线Windows --->Preferences--->General--->Editors--->Text E

java总结,错误集

java中abstract怎么使用 abstract(抽象)修饰符,可以修饰类和方法 1,abstract修饰类,会使这个类成为一个抽象类,这个类将不能生成对象实例,但可以做为对象变量声明的类型,也就是编译时类型,抽象类就像当于一类的半成品,需要子类继承并覆盖其中的抽象方法. 2,abstract修饰方法,会使这个方法变成抽象方法,也就是只有声明(定义)而没有实现,实现部分以":"代替.需要子类继承实现(覆盖). 注意:有抽象方法的类一定是抽象类.但是抽象类中不一定都是抽象方法,也可以

解决bug:Couldn't load ClientCore from loader dalvik.system.PathClassLoader

当出现错误: java.lang.UnsatisfiedLinkError: Couldn't load ClientCore from loader dalvik.system.PathClassLoader[DexPathList[[zip file "/data/app/cn.gloud.client-2.apk"],nativeLibraryDirectories=[/data/app-lib/cn.gloud.client-2, /vendor/lib, /system/li

Spring讲解-----------资源(resource)

4.1.1  概述 在日常程序开发中,处理外部资源是很繁琐的事情,我们可能需要处理URL资源.File资源资源.ClassPath相关资源.服务器相关资源(JBoss AS 5.x上的VFS资源)等等很多资源.因此处理这些资源需要使用不同的接口,这就增加了我们系统的复杂性:而且处理这些资源步骤都是类似的(打开资源.读取资源.关闭资源),因此如果能抽象出一个统一的接口来对这些底层资源进行统一访问,是不是很方便,而且使我们系统更加简洁,都是对不同的底层资源使用同一个接口进行访问. Spring 提供

Spring Resource接口获取资源

本文转自http://elim.iteye.com/blog/2016305 感谢作者 Resource 所有的资源都被可以通过 InputStream 这个类来获取,所以也屏蔽了资源的提供者 ResourceLoader 接口负责资源的统一加载 通过Spring Resource接口获取资源 目录 1       Resource简介 2       通过ResourceLoader获取资源 3       在bean中获取Resource的方式 1       Resource简介 在Spr