异常提示: gen already exists but is not a source folder. Convert to a source folder or rename it.   错误原因: 我在导入以前的项目的时候出现了这个异常,原因是.classpath文件(这个文件在eclipse中是看不到的,必须在文件浏览器中才能看到并编辑)出错,导致eclipse不能识别我的src代码文件夹,需要通过设置来指明源码所在的文件夹.   解决办法: 右键项目,选择Properties——Jav…
Right click on the project and go to "Properties" Select "Java Build Path" on the left Open "Source" tab Click "Add Folder..." Check "gen" folder and click Ok http://stackoverflow.com/questions/6185600/and…
解决方法: 遇到这个问题的解决方法: 1. 右键点击工程,选择 "Properties" 2. 选择左边的 "Java Build Path" 3. 打开 "Source" 标签面板 4. 点击 "Add Folder..." 5. 勾选 "gen" 文件夹,点击OK,点击YES,再点击OK 6. 最后右键点击工程,选择 "Andriod Tools" 里面的 "Fix Pro…
1. Right click on the project and go to "Properties" //鼠标右键点击项目,然后选中Properties   2. Select "Java Build Path" on the left //选择java Build Path   3. Open "Source" tab // 打开源文件的tab栏   4. Click "Add Folder..." //点击添加文件夹 …
异常名称 //数据源拒绝从服务器建立连接.消息:"连接太多" com.MySQL.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" 原因一 MYSQL安装目录打开MY.INI. 找到max_connections…
wusipingdeMacBook-Pro:~ railgun$ wusipingdeMacBook-Pro:~ railgun$ svn ls https://13.13.13.134:8443/svn/isite_ios Error validating server certificate for 'https://13.13.13.134:8443': - The certificate is not issued by a trusted authority. Use the fing…
在使用springboot maven 打包时 报如下错误 (请使用 -source 7 或更高版本以启用 diamond 运算符) pom.xml编译插件 配置如下: <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> 在网上查了一下,解决方式如下: <p…
在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…
遇到android项目导入出现后重复空包等错误,往往是导入的java编译级别有关,点击项目properties-> java Compiler ->修改Compiler compliance level 一般是1.6. 修改完成clean项目之后,往往还会遇到: gen already exists but is not a source folder. Convert to a source folder or rename it的错误. 遇到这个问题的解决方法: 1. 右键点击工程,选择…
从GitHub上恢复之前的版本  eclipse 报错: Convert to a source folder or rename it. 网上找了答案 : 找到了这个 1. 删除gen文件. 2.选中项目 -> project -> clean 3.项目右键-> android tools -> fix project properties 然而并没有解决我的问题. 后来看到了这个 , 完美解决. 1. 项目右键- >Properties - > Java Build…