- 浏览: 71670 次
- 性别:
- 来自: 珠海
最新评论
-
Fkron:
系乱的代码.....
ibatis分页 -
xiechunmei13:
最近项目使用到了struts+spring+ibatis,看到 ...
ibatis分页组件分页
文章列表
步骤:1. 创建SepPage类,并设置有关的方法。2. 在进行页面的转移时传递并当前的页面并传递参数。3. 进行分页处理。a. 计算总记录数b. 怎么样进行分页c. 首页显示处理d. 传递有关参数e. 获取有关传递的页面的参数实例:以查询所有的用户信息为例子进行说明package bean;/**********************分页类描述************************/public class SepPage { private int all ...
- 2009-08-19 15:58
- 浏览 1106
- 评论(0)
等级问题处理:1, java开发爱好者2 java程序员3 java经理注:在添加等级时添加的是数字,但是显示的时候是像java开发爱好者的字符串信息。import java.util.Properties;//属性类public class Test{ private Properties pro=null; private static final Test test=new Test();//设置类为单件模式 public Test() { pro=new Propertie ...
- 2009-08-19 15:56
- 浏览 691
- 评论(0)
js处理var xmlHttp;var type;function refreshList(selecttype){ type = selecttype; if(type == 'c') { var country = document.getElementById("country").value; if(country == "") ...
- 2009-08-19 15:56
- 浏览 2265
- 评论(0)
数据库设计:国家表 T_Nation 国家表NAT_ID 国家编号(都为varchar2的数据类型)NAT_DES 名称省份表;T_provincePRO_ID 省份编号PRO_DES 省份名称NAT_ID 国家编号(外键)城市表:T_CityCITY_ID 城市编号CITY_NAM 城市名称PRO_ID 省份编号(外键)页 ...
- 2009-08-19 15:55
- 浏览 2156
- 评论(0)
1. 首先更新include 下面的My97DatePicker包2. 将<script src="<%=path%>/include/My97DatePicker/WdatePicker.js" type="text/javascript"></script>导入到页面中3. 在页面上调用js就可以了4. 例如:<input name="staff.IDCardInvalidDate" type="text" onClick="WdatePicker()& ...
- 2009-08-19 15:53
- 浏览 1624
- 评论(0)
1、自定义标签的实现包括以下文件:BaseHanderTag.java (自定义标签基类)DrawListBoxTag.java (生成自定义标签,此类继承基类)HandlerServlet.java (ajax 业务控件类)ParseDB.java (数据访问类)SqlClass.java (sql语句类) 具体代码详见自定义标签代码:1. 在src的com.ERP.pub.util的目录下创建以下的文件:BaseHanderTag.java (自定义标签基类)DrawListBoxTag.java (生成自定义标签,此类继承基类)Handl ...
- 2009-08-19 15:49
- 浏览 2535
- 评论(0)
[img]1.ibetis分页实现步骤a. 创建Page类。b.创建bean类,并继承Page类。b. 在dao层,定义两个方法。并实现该方法。c. 在业务层,同样定义两个方法。并实现它。d. 在配置文件中注入有关的page类。并设置相应的get和set方法。e. 在action中调用有关的方法。f.进行配置文件的设置。详细步骤:1. Page类package com.exeerp.sm.bean;public class Page{ private int pagesize;//单页记录 private int currentpage = 1;//当前 ...
- 2009-08-19 15:47
- 浏览 2419
- 评论(1)
1.aciton处理:String[] arr=ServletActionContext.getRequest().getParameterValues("check"); String str="'"+arr[0].toString()+"'"; for(int i=0;i<arr.length;i++) { str=str+","+"'"+arr+"'";/ ...
- 2009-08-19 15:46
- 浏览 969
- 评论(0)
以登录为例介绍1、 先创建bean对象2、 创建对应的action3、 在action的同级目录下创建验证的配置文件.4、 创建jsp文件
备注:当一个Action中有多个业务方法时 : Action 类 名-映射名-validation.xml
- 2009-08-19 15:45
- 浏览 1129
- 评论(0)
<%@ page contentType="text/html;charset=GBK" language="java" %><%@ taglib prefix="s" uri="/struts-tags" %><html><head> <title>tabbled panel示例:简单tabbled panel</title> <s:head theme="ajax" debug="true&qu ...
- 2009-08-19 15:42
- 浏览 905
- 评论(0)
2009-6-19java解析xml之一 Dom4j【实现:】import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.io.Writer; import java.util.Iterator; import org.dom4j.Document; import org.dom4j.DocumentException; import org.dom4j.DocumentHelper; import org.dom4j.Element; import org.dom4j.io.SA ...
- 2009-08-19 15:39
- 浏览 3016
- 评论(0)
<%@ page contentType="image/jpeg" import="java.awt.*,java.awt.image.*,java.util.*,javax.imageio.*" %><%! Color getRandColor(int fc,int bc) //给定范围获得随机颜色 { Random random = new Random(); ...
- 2009-08-19 15:34
- 浏览 848
- 评论(0)
步骤:1. 创建SepPage类,并设置有关的方法。2. 在进行页面的转移时传递并当前的页面并传递参数。3. 进行分页处理。a. 计算总记录数b. 怎么样进行分页c. 首页显示处理d. 传递有关参数e. 获取有关传递的页面的参数实例:以查询所有的用户信息为例子进行说明package bean;/**********************分页类描述************************/public class SepPage { private int all ...
- 2009-08-19 15:32
- 浏览 874
- 评论(0)
import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import javax.xm ...
- 2009-08-19 15:29
- 浏览 1185
- 评论(0)
import java.io.UnsupportedEncodingException;import java.net.URLDecoder;import org.apache.commons.validator.GenericValidator;import sun.io.ByteToCharConverter;import sun.io.MalformedInputException;public class StringUtil{ public StringUtil(){ } /** * * @param s String * @return String */ p ...
- 2009-08-19 15:24
- 浏览 949
- 评论(0)