摘要:
win10系统越用越卡,内存占用越来越大, 阅读全文
摘要:
Error!]the type java.lang.String cannot be resolved. it is indirectly referenced from required .class files 有时候用myeclipse导入一个外来的工程时会出现以上错误,这主要是因为你的电脑上 阅读全文
摘要:
方法: project-->properties-->java build path-->右击source选项卡-->展开项目-->选择exclude-->点击edit-->exclude patternts-->查看是否把代码目录排除了, 或者project-->properties-->java 阅读全文
摘要:
启动tomcat,控制台出现这个问题 提示版本不对,不能加载类,后来发现是因为项目编译用的jdk版本高于tomcat运行的jdk版本,后来将tomcat运行的jdk改为1.6后就好了 阅读全文
摘要:
导入数据库--创建表空间(原数据库所在的表空间名)create tablespace 表空间名 datafile 'g:\hygy\zjgltest.dbf' size 1024M;--创建用户create user xhdc identified by hygy default tablespac 阅读全文
摘要:
--数据库多字段去重delete from student a where (a.no,a.name,a.science)in (select a.no,a.name,a.science from student a group by a.no,a.name,a.science having cou 阅读全文