Description Resource Path Location Type Project has no default.properties file! Edit the project properties to set one. 出现这个错误,肯定是使用eclipse import导入别的项目,解决这个问题就是纠正下如何导入别人的项目或者其他环境下的项目 在eclipse 选择新建android工程,选择“create project from existing source”即可.…
intellij中install报错:The packaging for this project did not assign a file to the build artifact 原因是run/eidt configuration -> maven -> preject name -> Parameters -> command line中是install:install. 改成install就可以了. 备注:idea中run/eidt configuration 位置:…
1. 问题--使用git将代码提交到码云,使用到以下命令时: git commit -m 'init project' # 报错 error: pathspec 'project'' did not match any file(s) known to git. 2. 解决方法:将单引号换成双引号就行了 git commit -m "init project" 3.备注: 在Linux系统中,commit信息使用单引号包括,windows系统,commit信息使用双引号. 所以在git…
因为电脑卡死强制重启电脑后打开idea,进行junit单元测试报错: idea报错.Error:Failed to load project configuration: cannot parse xml file E:\project\.idea\workspace.xml: Error on line 1: 前言中不允许有内容. 解决方案: 将文件夹中workspace.xml的内容粘贴到idea中的workspace.xml即可…
当进行mvn install时,遇到以下错误 The packaging for this project did not assign a file to the build artifact 在网上找了一下,使用mvn clean install 解决了问题. 在网上看到了一个帖子“mvn clean install”和“mvn clean install:install”的不同,有空看看. http://stackoverflow.com/questions/6308162/maven-t…
解决mvn clean install的报错The packaging for this project did not assign a file to the build artifact…
insert into month_gpcj_info(idStr,zszrmygpsl,xyzrmygpsl,mycje,mycjl,month_date,dataCompiledDate) select UUID() idstr, max(m.GPGSZSZhuanRangShu) zszrmygpsl,max(m.GPGSXYZhuanRangShu) xyzrmygpsl, ' month_date,'2015-09-01' dataCompiledDate from market_sc…
网上找来这种方法基本解决: 在我们导入Android工程时,有时候会出现如题所述的错误,打开工程目录可以看到,目录下的default.properties文件没有了或者多出了一个project.properties的文件,default.properties文件的主要作用和信息在文件中的注释里说的很清楚了,这边就不多说了哈~ 那我们怎么解决这个错误呢?其实很简单啦~有两个方法: 1.到其他工程里把这个default.properties文件拷贝过来直接用,没有关系,可以用的,都是一样的啦~ (这…
今天试了一下数据表中的数据备份到另一个空的数据表,然后使用了SQL SELECT INTO语句,然后提示Undeclared variable......错误,现在在这里做下总结并给出解决办法. 应用程序在开发.测试过程中,经常会遇到需要表复制的情况,比如将一个表table1的数据的部分字段或全部字段复制到表table2中,这时候就是 SELECT INTO 或者 INSERT INTO SELECT 发挥奇妙无穷的作用的时候了.至于这两种方法的区别和用法,就请慢慢往下看吧! (1)INSERT…
你这idea不会没有配置默认jdk吧?你看看File--other settings--default project structure,看看project setting的project里面,有没有配置jdk…