摘要: 网络项目可以直接引用这个jquery库 阅读全文
posted @ 2013-08-16 19:10 Brook Legend 阅读(413) 评论(0) 推荐(0) 编辑
摘要: sdfsdfds 阅读全文
posted @ 2013-04-24 21:58 Brook Legend 阅读(207) 评论(0) 推荐(0) 编辑
摘要: iBatis是又一个O/R Mapping解决方案,j2ee的O/R方案真是多,和Hibernate相比,iBatis最大的特点就是小巧,上手很快。如果你不需要太多复杂的功能,iBatis是能满足你的要求又足够灵活的最简单的解决方案。第一步:package com.ibatis;public class Author {private int id;private String name;public int getId() { return id;}public void setId(int id) { this.id = id;}public String getName() { retu 阅读全文
posted @ 2013-03-24 10:36 Brook Legend 阅读(544) 评论(0) 推荐(0) 编辑
摘要: package com.icss.tools.excel;import java.io.IOException;import java.io.OutputStream;import java.util.ArrayList;import java.util.List;import org.apache.poi.hssf.usermodel.HSSFCell;import org.apache.poi.hssf.usermodel.HSSFCellStyle;import org.apache.poi.hssf.usermodel.HSSFClientAnchor;import org.apach 阅读全文
posted @ 2013-03-06 22:29 Brook Legend 阅读(372) 评论(0) 推荐(0) 编辑
摘要: http://it.chinawin.net/softwaredev/article-1b659.htmlStruts2 poi导出excelStruts2poi导出excel最近实习的项目中做了个导出,记录一下方便以后使用:Action:privateInputStreamexcelFile;privateStringdownloadFileName;Setter&GetterpublicStringgetDownloadFileName(){SimpleDateFormatsf=newSimpleDateFormat("yyyy-MM-dd");Stringdo 阅读全文
posted @ 2013-03-06 22:20 Brook Legend 阅读(338) 评论(0) 推荐(0) 编辑
摘要: 我的异常网http://www.myexception.cn/ajax/414051.htmljqGrid:二、 第一个jqGrid<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html> <head> <title>grid.html</title> <meta http-equiv="keywords&q 阅读全文
posted @ 2013-02-20 20:36 Brook Legend 阅读(552) 评论(0) 推荐(0) 编辑
摘要: $("#dataInfo").jqGrid({ datatype: "local", //Array Data colNames: [ '轨迹', '车牌号码'], //列标题列表 colModel: [ { name: 'CheckBox', index: 'CheckBox', align: 'center', width: 100,sortable: false }, { name: 'LicenceNumber', index: 'Licenc 阅读全文
posted @ 2013-02-20 20:17 Brook Legend 阅读(2225) 评论(0) 推荐(0) 编辑
摘要: 这样写:$( pGridId ).closest(".ui-jqgrid-bdiv").css({ 'overflow-x' : 'hidden' });参数:shrinkToFit:false, ( autoScroll: true,)例子如下:http://z3sm2012.iteye.com/blog/1431549 {name:'inventoryCode',index:'inventoryCode', width:160, editable:true,align:"center"} 阅读全文
posted @ 2013-02-20 19:52 Brook Legend 阅读(6793) 评论(0) 推荐(0) 编辑
摘要: http://www.blogjava.net/max/archive/2006/11/01/78536.html <h2><s:text name="HelloWorld"/></h2> <h2><s:property value="%{getText('HelloWorld')}"/></h2>Struts2中提供了如下两种方式来填充消息字符串中的占位符(1)JSP页面,在<s:text.../>标签中使用多个<s:param.../>标签 阅读全文
posted @ 2013-01-24 23:21 Brook Legend 阅读(1121) 评论(0) 推荐(0) 编辑
摘要: 在struts.xml里面加入: http://jinlixiang.iteye.com/blog/1494975http://www.cnblogs.com/langlang/archive/2010/01/14/1647627.html<constant name="struts.custom.i18n.resources" value="globalMessages" /> 如下: <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE 阅读全文
posted @ 2013-01-24 23:07 Brook Legend 阅读(326) 评论(0) 推荐(0) 编辑