myeclipse8.5反编译插件的安装使用--jd-gui插件
摘要:在实际的工作中,可能会用到反编译工具,尤其对于定制的myeclipse开发平台,很多的公共方法都进行二次分装,无法直接查看,通过本插件的安装,可以直接点击查看分装在jar包中的class文件,这对学习SSH的源码包提供了一定的方便。注意:本人安装了该插件,导致myeclipse的SVN版本工具无法使用,特此声明,需要提前进行备份myeclipse。安装环境为myeclipse8.5,请注意首先下载反编译工具的安装包:http://java.decompiler.free.fr/jd-eclipse/update/jdeclipse_update_site.zip将下载的压缩包拷贝到myecli
阅读全文
posted @
2012-02-12 22:59
Coldest Winter
阅读(3377)
推荐(0)
推荐一款类似于editplus的文本编辑工具:note++
摘要:官方网址:http://notepad-plus-plus.org/下载后,直接点击安装,就可以使用了,下面介绍该软件很有用的一个插件:Explorer plugin,大家也可以根据自己的需求定制安装插件:点击:插件---plugin manager---showplugin manager:在available中查出Explorer,点击install,安装。安装成功后,需要点击插件,Explorer--Explorer启用他。点击小红三角形,可以查看当前文件夹下面的所有文件,并可以快速的访问;
阅读全文
posted @
2012-02-12 22:58
Coldest Winter
阅读(1491)
推荐(0)
table join(left,right,inner)
摘要:Three different types of joins(三种不同方式的连接)inner joins - Return a row only when the columns in the join containvalues that satisfy the join condition.This means that if a row has a null value in one of the columns in thejoin condition, that row isn't returned.Outer joins - Can return a row even wh
阅读全文
posted @
2012-02-11 17:56
Coldest Winter
阅读(431)
推荐(0)
使用存储过程进行分页:page by Procedure
摘要:包头: 1 CREATE OR REPLACE PACKAGE EMP_SIMPLE_DEMO IS 2 3 --定义一个游标 4 TYPE EMP_REF_CURSOR IS REF CURSOR; 5 6 /** 7 *分页存储过程 8 *要求可以输入表名,每页显示记录数、当前页。返回总记录数,总页数,和返回的结果集。 9 */10 PROCEDURE FENYE(I_TABLENAME IN VARCHAR2, --表名11 I_PAGESIZE IN PLS_INTEGER, --页大小12 ...
阅读全文
posted @
2012-02-07 22:50
Coldest Winter
阅读(285)
推荐(0)