`
文章列表
    1)Jsp  <th class="span5">    <div class="text-center">        <s:select id="document" name="documentCodes" multiple="true" cssStyle="width:400px;" size="22"                     list="masterPolicyDoc ...
http://www.thinksaas.cn/group/topic/229013/
Property元素中的formula允许对象属性包含导出值,比如sum、average、max等的结果。如: <property name= "averagePrice" formula= "(select avg(pc.price) from PriceCatalogue pc, SelectedItems si where si.priceRefID=pc.priceID)" /> 此外,formula还可以基于当前记录的特定属性值从另一个表检索值。例如: 代码 <property name= "cur ...
   现象:    Can not find a java.io.InputStream with the name [inputStream] in the invocation stack. Check the <param name="inputName"> tag specified for this action.    原因:         你要下载的文件不存在,导致inputStream为null,所以报了这个错误;查看官方源代码, 如下:            if (inputStream == null) {                ...
1.后台数据:      /** List of days. */     private Collection<Date> examDays;          /** The map list. */     private List<Map> examDayList = new ArrayList<Map>();       SimpleDateFormat df = new SimpleDateFormat("dd");         for (Date examDay : examDays) {             Map ...

Java 导出Excel

    博客分类:
  • JAVA
参考地址:http://www.shuyangyang.com.cn/jishuliangongfang/Javabiancheng/2013-03-09/37.html
参考地址:http://www.blogjava.net/luckygino/archive/2009/05/26/upload.html
1)查询语句     select id,rank from rs2qtbtc ;     结果:      id       rank      1       0      2       1      3       2      4       3 2)查询语句 select id,rank,decode(id,4,0,1) orders from rs2qtbtc order by orders,rank;      结果:      id       rank      orders      4           3            0     ...

Js内置对象

JS中内置了17个对象,常用的是Array对象、Date对象、正则表达式对象、string对象、Global对象,Math对象 1)Array对象中常用 A:方法: Concat():表示把几个数组合并成一个数组。 Join():返回字符串值,其中包含了连接到一起的数组的所有元素,元素由指定的分隔符分隔开来。 Pop():移除数组最后一个元素。 Shift():移除数组中第一个元素。 Slice(start,end):返回数组中的一段。 ...
Oracle: 1.先执行子查询,再执行主查询。在执行子查询的时候,把主查询挂起,当子查询执行完毕后,把结果存放到一个临时表中,然后再执行主查询 select * from T1 where TI.a in (select T2.a from T2); 2.先执行主查询,再执行子查询,找到匹配的为止。      select * from T1 where exists (select * from  T2 where T1.a = T2.a);  Oracle查询语句中 from 后 表是按照自上而下的顺序查询的, where 后的条件是按照自下而上的顺序执行的。 My Sql ...

树性结构实例

建表: create table address(   id  number(10) not null,   name varchar2(256) not null,   father_id number(10) ); 建立索引 create unique index address_1 on address(id) ; 创建主键 alter table address add constraint address_pk primary key(id) using index address_1; 创建外键 alter table address add constra ...

Sql行列转换

name           subject           result    Lily            Java                 74    Lily           Hibernate          83    LiLy          Oracle               93    Lucy        Java                   74    Lucy        Hibernate           84    Lucy      Oracle                  94         ...
Spring有一个专门负责管理Javamail发送的机制,在org.springframework.mail包下是负责管理JavaMail发送的,我把这个包下的类封装到一个Jar文件中作为jar包资源使用,(如有需要下载的可以到我的资源中下载),其中org.springframework.mail.javamail.JavaMailSenderImpl就是我们需要用到掌管发送邮件的类,在Spring中的配置如下:   [html] view plaincopy  
// CHECKSTYLE:OFF NCSS    **********Method*********** // CHECKSTYLE:ON NCSS
(1) Create or Replace Package myPackage   is  begin type stdInfo is record(stdInfo varchar(30), comment varchar(1)); type myArray is table of stdInfo index by binary_integer;   (2)  Create or Replace Procedure get_comment(commentArray out myPackage.myArray)  is rs SYS_REFCURSOR; record m ...
Global site tag (gtag.js) - Google Analytics