- 浏览: 192514 次
- 性别:
- 来自: 深圳
最新评论
-
Noenemy:
不错,很赞
(七)Ireport做报表数据总计,如:所有员工薪水总和 -
annmi_cai:
iReport流行吗
(一)介绍Jaspereport及报表制作工具Ireport -
Ray.Hsu:
解码呢??
java加密,可用于数据库保存用户密码 -
jackharkness:
能不能发份IREReport中文文档给我邮箱?邮箱地址是139 ...
(一)介绍Jaspereport及报表制作工具Ireport -
jauking:
hi可以翻译为 Oct 9th么?
java格式化日期,显示英文日期
文章列表
package com.tnt.util;
public class PageUtil {
private int currentPage;// 当前页
private int pageSize = 10;// 每页显示记录数 常量
private int totalRecord;// 总记录数
private int totalPage;// 总页数
private int firstPage;// 第一页
private int lastPage;// 最后一页
private int prePage;// 上一页
private int next ...
[color=black]package myfilter;
import java.io.IOException;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.se ...
1,
Calendar calendar = Calendar.getInstance();
String now = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(calendar.getTime());
2,
String now = new SimpleDateFormat(("yyyy-MM-dd HH:mm:ss").format(new Date());
3,
String now = new SimpleDateFormat(( ...