
Technical article
dreamingcoder259
这个作者很懒,什么都没留下…
展开
-
WindowXP使用"包含文字"搜索,找不到文件之解决办法
在windows xp 操作系统中,使用"包含文字"搜索不到含有某关键字的文件怎么办? 有时候,要在某个目录下所有的文件搜索文件中包含的文字的文件,但是有些文件搜索不到(操作系统对有些后缀的文件不搜索,一般只搜索扩展名为.txt的文本文件),今天又要找一些东西,搜索一下又没有怒了原创 2011-07-24 23:28:26 · 1399 阅读 · 0 评论 -
打包工具nsis
打包工具nsis原创 2013-02-04 10:34:18 · 455 阅读 · 0 评论 -
火狐安装出错
选择Fully localized versionswww.mozilla.org/en-US/firefox/all.html原创 2013-01-14 14:23:19 · 461 阅读 · 0 评论 -
java远程连接工具
VNCViewerLogMeIn原创 2012-12-12 15:41:18 · 669 阅读 · 0 评论 -
Jpa Unknown entity:
在做JPa练习时,发现一个错误。很是郁闷,搞了一下午。终于搞定。java.lang.IllegalArgumentException: Unknown entity: com.entity.TestEntity at org.hibernate.ejb.AbstractEntityManagerImpl.persist(AbstractEntityManagerImpl.java:6转载 2012-11-27 14:36:07 · 5410 阅读 · 0 评论 -
java_opts
对于JVM设置,可以查考如下配置example:# Memory configurationJAVA_OPTS="-server" JAVA_OPTS="$JAVA_OPTS -Xms1280m"JAVA_OPTS="$JAVA_OPTS -Xmx1280m"JAVA_OPTS="$JAVA_OPTS -XX:NewSize=640m"JAVA_OPTS="原创 2012-08-30 14:49:25 · 1673 阅读 · 0 评论 -
MyEclipse配置WebLogic92服务器
MyEclipse配置WebLogic92服务器MyEclipse一直用服务器为Tomcat,终于升级了,不要在Tomcat了,太不够档次了。 现在用WebLogic9.2。启动Eclipse,选择“窗口/首选项”菜单,打开首选项对话框。展开MyEclipse下的Servers/Weblogic结点,然后点击WebLogic 9.x,选中右边的Enable单选按钮,启用WebLogic原创 2011-07-08 00:25:03 · 873 阅读 · 0 评论 -
【Java】weblogic9.2 + myeclipse 部署时要注意的几点
1、JDK的选用weblogic9.2版本所使用的jdk为jdk150_12,如果项目中使用jdk1.6的话,就只能访问到http://localhost:7001/console而进入项目后会报Error 404或500错误,而项目本身在tomcat或其他应用服务器是没有问题的。这时就需要将weblogic9.2所使用的jdk与IDE工具安装的jdk统一为1.5的,也可以使用webl转载 2011-07-24 19:45:47 · 2435 阅读 · 0 评论 -
cursor_loop
DECLARECURSOR XX ISSELECT * FROM NOTEBOOK;ROWINDEX VARCHAR2(30);BEGINFOR ENTRYROW IN XX LOOPROWINDEX := (XX%ROWCOUNT);UPDATE N原创 2011-08-23 22:30:45 · 381 阅读 · 0 评论 -
JD-Eclipse_4you
JD-EclipseJD-Eclipse is a plug-in for the Eclipse platform. It allows you to display all the Java sources during your debugging proc原创 2011-08-07 15:08:07 · 608 阅读 · 0 评论 -
禁用MyEclipse updating indexes
updating indexes用于自动更新,但一般没有,且在MyEclipse消耗内存,建议关闭updating indexesWindow > Preferences > Myeclipse Enterprise Workbench > Maven4Myeclip原创 2011-08-14 20:42:22 · 491 阅读 · 0 评论 -
poi_insertrow
Today i need to write some code about import/export the excel by using poi,at first i find the addrow,createrow method,but didn't find inse原创 2011-08-05 18:20:56 · 525 阅读 · 0 评论 -
Associations (OOM)
An association represents a structural relationship between classes or between a class and an interface.An association can be created in the原创 2011-07-18 23:07:24 · 528 阅读 · 0 评论 -
Multiple operations have reported errors Select an error to view its details
在myeclipse中保存时总是弹出错误提示框: 错误信息: Multiple operations have reported errors Select an error to view its details Update Progress 在网上找了下: 解决办法: 1.原创 2011-07-24 19:59:08 · 1052 阅读 · 0 评论 -
hsqldb-2.2.5运行runManager.bat报错
D:\Java_Essential\hsqldb-2.2.5\hsqldb\bin>cd ..\dataException in thread "main" java.lang.UnsupportedClassVersionError: oil/DatabaseManager (原创 2011-07-09 09:24:17 · 730 阅读 · 0 评论 -
junit+selenium自动化测试
package com.example.tests;import com.thoughtworks.selenium.*;import org.junit.After;import org.junit.Before;import org.junit.Test;import static org.junit.Assert.*;import java.util.regex.Pa原创 2013-05-24 09:09:54 · 916 阅读 · 0 评论