重写ResultSet实现分页功能(最好的分页技术)(转)
1.首先定义一个接口Pageable 继承ResultSet这个类
并在接口中定义一些自己的方法,具体方法如下:
package com.page;
import java.sql.ResultSet;
public interface Pageable extends ResultSet {
/**返回总页数
*/
int getPageCount();
/**返回当前页的记录条数
*/
int getPageRowsCount();
/**返回分页大小
*/
int getPageSize();
/**转到指定页
*/
void gotoPage(int page) ;
/**设置分页大小
*/
void setPageSize(int pageSize);
/**返回总记录行数
*/
int getRowsCount();
/**
* 转到当前页的第一条记录
* @exception java.sql.SQLException 异常说明。
*/
void pageFirst() throws java.sql.SQLException;
/**
* 转到当前页的最后一条记录
* @exception java.sql.SQLException 异常说明。
*/
void pageLast() throws java.sql.SQLException;
/**返回当前页号
*/
int getCurPage();
}
2.然后定义一个类PageableResultSet 实现这个接口,覆盖ResultSet的所有方法.并实现接口Pageable 中自定义的方法,具体实现方式如下:
package com.page;
import java.io.InputStream;
import java.io.Reader;
import java.math.BigDecimal;
import java.net.URL;
import java.sql.Array;
import java.sql.Blob;
import java.sql.Clob;
import java.sql.Date;
import java.sql.Ref;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.SQLWarning;
import java.sql.Statement;
import java.sql.Time;
import java.sql.Timestamp;
import java.util.Calendar;
import java.util.Map;
public class PageableResultSet implements Pageable {
protected java.sql.ResultSet rs=null;
protected int rowsCount;
protected int pageSize;
protected int curPage;
protected String command = "";
public PageableResultSet(java.sql.ResultSet rs) throws java.sql.SQLException {
if(rs==null) throw new SQLException("given ResultSet is NULL","user");
rs.last();
rowsCount=rs.getRow();
System.out.println(rowsCount);
rs.beforeFirst();
this.rs=rs;
}
public int getCurPage() {
return curPage;
}
public int getPageCount() {
if(rowsCount==0) return 0;
if(pageSize==0) return 1;
// calculate PageCount
double tmpD=(double)rowsCount/pageSize;
int tmpI=(int)tmpD;
if(tmpD>tmpI) tmpI++;
return tmpI;
}
public int getPageRowsCount() {
if(pageSize==0) return rowsCount;
if(getRowsCount()==0) return 0;
if(curPage!=getPageCount()) return pageSize;
return rowsCount-(getPageCount()-1)*pageSize;
}
public int getPageSize() {
return pageSize;
}
public int getRowsCount() {
return rowsCount;
}
public void gotoPage(int page) {
if (rs == null)
return;
if (page < 1)
page = 1;
if (page > getPageCount())
page = getPageCount();
int row = (page - 1) * pageSize + 1;
try {
rs.absolute(row);
curPage = page;
}
catch (java.sql.SQLException e) {
}
}
public void pageFirst() throws SQLException {
int row=(curPage-1)*pageSize+1;
rs.absolute(row);
}
public void pageLast() throws SQLException {
int row=(curPage-1)*pageSize+getPageRowsCount();
rs.absolute(row);
}
public void setPageSize(int pageSize) {
if(pageSize>=0){
this.pageSize=pageSize;
curPage=1;
}
}
public boolean next() throws SQLException {
return rs.next();
}
public boolean absolute(int row) throws SQLException {
return rs.absolute(row);
}
public void afterLast() throws SQLException {
rs.afterLast();
}
public void beforeFirst() throws SQLException {
rs.beforeFirst();
}
public void cancelRowUpdates() throws SQLException {
rs.cancelRowUpdates();
}
public void clearWarnings() throws SQLException {
rs.clearWarnings();
}
public void close() throws SQLException {
rs.close();
}
public void deleteRow() throws SQLException {
rs.deleteRow();
}
public int findColumn(String columnName) throws SQLException {
return rs.findColumn(columnName);
}
public boolean first() throws SQLException {
return rs.first();
}
public Array getArray(int i) throws SQLException {
return rs.getArray(i);
}
public Array getArray(String colName) throws SQLException {
return rs.getArray(colName);
}
public InputStream getAsciiStream(int columnIndex) throws SQLException {
return rs.getAsciiStream(columnIndex);
}
public InputStream getAsciiStream(String columnName) throws SQLException {
return rs.getAsciiStream(columnName);
}
public BigDecimal getBigDecimal(int columnIndex) throws SQLException {
return rs.getBigDecimal(columnIndex);
}
public BigDecimal getBigDecimal(String columnName) throws SQLException {
return rs.getBigDecimal(columnName);
}
public BigDecimal getBigDecimal(int columnIndex, int scale) throws SQLException {
return rs.getBigDecimal(columnIndex, scale);
}
public BigDecimal getBigDecimal(String columnName, int scale) throws SQLException {
return rs.getBigDecimal(columnName, scale);
}
public InputStream getBinaryStream(int columnIndex) throws SQLException {
return rs.getBinaryStream(columnIndex);
}
public InputStream getBinaryStream(String columnName) throws SQLException {
return rs.getBinaryStream(columnName);
}
public Blob getBlob(int i) throws SQLException {
return rs.getBlob(i);
}
public Blob getBlob(String colName) throws SQLException {
return rs.getBlob(colName);
}
public boolean getBoolean(int columnIndex) throws SQLException {
return rs.getBoolean(columnIndex);
}
public boolean getBoolean(String columnName) throws SQLException {
return rs.getBoolean(columnName);
}
public byte getByte(int columnIndex) throws SQLException {
return rs.getByte(columnIndex);
}
public byte getByte(String columnName) throws SQLException {
// TODO 自动生成方法存根
return rs.getByte(columnName);
}
public byte[] getBytes(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return rs.getBytes(columnIndex);
}
public byte[] getBytes(String columnName) throws SQLException {
// TODO 自动生成方法存根
return rs.getBytes(columnName);
}
public Reader getCharacterStream(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return rs.getCharacterStream(columnIndex);
}
public Reader getCharacterStream(String columnName) throws SQLException {
// TODO 自动生成方法存根
return rs.getCharacterStream(columnName);
}
public Clob getClob(int i) throws SQLException {
// TODO 自动生成方法存根
return rs.getClob(i);
}
public Clob getClob(String colName) throws SQLException {
// TODO 自动生成方法存根
return rs.getClob(colName);
}
public int getConcurrency() throws SQLException {
// TODO 自动生成方法存根
return rs.getConcurrency();
}
public String getCursorName() throws SQLException {
// TODO 自动生成方法存根
return rs.getCursorName();
}
public Date getDate(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return rs.getDate(columnIndex);
}
public Date getDate(String columnName) throws SQLException {
// TODO 自动生成方法存根
return rs.getDate(columnName);
}
public Date getDate(int columnIndex, Calendar cal) throws SQLException {
// TODO 自动生成方法存根
return rs.getDate(columnIndex, cal);
}
public Date getDate(String columnName, Calendar cal) throws SQLException {
// TODO 自动生成方法存根
return rs.getDate(columnName, cal);
}
public double getDouble(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return rs.getDouble(columnIndex);
}
public double getDouble(String columnName) throws SQLException {
// TODO 自动生成方法存根
return rs.getDouble(columnName);
}
public int getFetchDirection() throws SQLException {
// TODO 自动生成方法存根
return rs.getFetchDirection();
}
public int getFetchSize() throws SQLException {
// TODO 自动生成方法存根
return rs.getFetchSize();
}
public float getFloat(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return rs.getFloat(columnIndex);
}
public float getFloat(String columnName) throws SQLException {
// TODO 自动生成方法存根
return rs.getFloat(columnName);
}
public int getInt(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return rs.getInt(columnIndex);
}
public int getInt(String columnName) throws SQLException {
// TODO 自动生成方法存根
return rs.getInt(columnName);
}
public long getLong(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return rs.getLong(columnIndex);
}
public long getLong(String columnName) throws SQLException {
// TODO 自动生成方法存根
return rs.getLong(columnName);
}
public ResultSetMetaData getMetaData() throws SQLException {
// TODO 自动生成方法存根
return rs.getMetaData();
}
public Object getObject(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return rs.getObject(columnIndex);
}
public Object getObject(String columnName) throws SQLException {
// TODO 自动生成方法存根
return rs.getObject(columnName);
}
public Object getObject(int i, Map<String, Class<?>> map) throws SQLException {
// TODO 自动生成方法存根
return rs.getObject(i, map);
}
public Object getObject(String colName, Map<String, Class<?>> map) throws SQLException {
// TODO 自动生成方法存根
return rs.getObject(colName, map);
}
public Ref getRef(int i) throws SQLException {
// TODO 自动生成方法存根
return rs.getRef(i);
}
public Ref getRef(String colName) throws SQLException {
// TODO 自动生成方法存根
return rs.getRef(colName);
}
public int getRow() throws SQLException {
// TODO 自动生成方法存根
return rs.getRow();
}
public short getShort(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return rs.getShort(columnIndex);
}
public short getShort(String columnName) throws SQLException {
// TODO 自动生成方法存根
return rs.getShort(columnName);
}
public Statement getStatement() throws SQLException {
// TODO 自动生成方法存根
return rs.getStatement();
}
public String getString(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return rs.getString(columnIndex);
}
public String getString(String columnName) throws SQLException {
// TODO 自动生成方法存根
return rs.getString(columnName);
}
public Time getTime(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return rs.getTime(columnIndex);
}
public Time getTime(String columnName) throws SQLException {
// TODO 自动生成方法存根
return rs.getTime(columnName);
}
public Time getTime(int columnIndex, Calendar cal) throws SQLException {
// TODO 自动生成方法存根
return rs.getTime(columnIndex, cal);
}
public Time getTime(String columnName, Calendar cal) throws SQLException {
// TODO 自动生成方法存根
return rs.getTime(columnName, cal);
}
public Timestamp getTimestamp(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return rs.getTimestamp(columnIndex);
}
public Timestamp getTimestamp(String columnName) throws SQLException {
// TODO 自动生成方法存根
return rs.getTimestamp(columnName);
}
public Timestamp getTimestamp(int columnIndex, Calendar cal) throws SQLException {
// TODO 自动生成方法存根
return rs.getTimestamp(columnIndex, cal);
}
public Timestamp getTimestamp(String columnName, Calendar cal) throws SQLException {
// TODO 自动生成方法存根
return rs.getTimestamp(columnName, cal);
}
public int getType() throws SQLException {
// TODO 自动生成方法存根
return rs.getType();
}
public URL getURL(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return rs.getURL(columnIndex);
}
public URL getURL(String columnName) throws SQLException {
// TODO 自动生成方法存根
return rs.getURL(columnName);
}
public InputStream getUnicodeStream(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
return rs.getUnicodeStream(columnIndex);
}
public InputStream getUnicodeStream(String columnName) throws SQLException {
// TODO 自动生成方法存根
return rs.getUnicodeStream(columnName);
}
public SQLWarning getWarnings() throws SQLException {
// TODO 自动生成方法存根
return rs.getWarnings();
}
public void insertRow() throws SQLException {
// TODO 自动生成方法存根
rs.insertRow();
}
public boolean isAfterLast() throws SQLException {
// TODO 自动生成方法存根
return rs.isAfterLast();
}
public boolean isBeforeFirst() throws SQLException {
// TODO 自动生成方法存根
return rs.isBeforeFirst();
}
public boolean isFirst() throws SQLException {
// TODO 自动生成方法存根
return rs.isFirst();
}
public boolean isLast() throws SQLException {
// TODO 自动生成方法存根
return rs.isLast();
}
public boolean last() throws SQLException {
// TODO 自动生成方法存根
return rs.last();
}
public void moveToCurrentRow() throws SQLException {
// TODO 自动生成方法存根
rs.moveToCurrentRow();
}
public void moveToInsertRow() throws SQLException {
// TODO 自动生成方法存根
rs.moveToInsertRow();
}
public boolean previous() throws SQLException {
// TODO 自动生成方法存根
return rs.previous();
}
public void refreshRow() throws SQLException {
// TODO 自动生成方法存根
rs.refreshRow();
}
public boolean relative(int rows) throws SQLException {
// TODO 自动生成方法存根
return rs.relative(rows);
}
public boolean rowDeleted() throws SQLException {
// TODO 自动生成方法存根
return rs.rowDeleted();
}
public boolean rowInserted() throws SQLException {
// TODO 自动生成方法存根
return rs.rowInserted();
}
public boolean rowUpdated() throws SQLException {
// TODO 自动生成方法存根
return rs.rowUpdated();
}
public void setFetchDirection(int direction) throws SQLException {
// TODO 自动生成方法存根
rs.setFetchDirection(direction);
}
public void setFetchSize(int rows) throws SQLException {
// TODO 自动生成方法存根
rs.setFetchSize(rows);
}
public void updateArray(int columnIndex, Array x) throws SQLException {
// TODO 自动生成方法存根
rs.updateArray(columnIndex, x);
}
public void updateArray(String columnName, Array x) throws SQLException {
// TODO 自动生成方法存根
rs.updateArray(columnName, x);
}
public void updateAsciiStream(int columnIndex, InputStream x, int length) throws SQLException {
// TODO 自动生成方法存根
rs.updateAsciiStream(columnIndex, x, length);
}
public void updateAsciiStream(String columnName, InputStream x, int length) throws SQLException {
// TODO 自动生成方法存根
rs.updateAsciiStream(columnName, x, length);
}
public void updateBigDecimal(int columnIndex, BigDecimal x) throws SQLException {
// TODO 自动生成方法存根
rs.updateBigDecimal(columnIndex, x);
}
public void updateBigDecimal(String columnName, BigDecimal x) throws SQLException {
// TODO 自动生成方法存根
rs.updateBigDecimal(columnName, x);
}
public void updateBinaryStream(int columnIndex, InputStream x, int length) throws SQLException {
// TODO 自动生成方法存根
rs.updateBinaryStream(columnIndex, x, length);
}
public void updateBinaryStream(String columnName, InputStream x, int length) throws SQLException {
// TODO 自动生成方法存根
rs.updateBinaryStream(columnName, x, length);
}
public void updateBlob(int columnIndex, Blob x) throws SQLException {
// TODO 自动生成方法存根
rs.updateBlob(columnIndex, x);
}
public void updateBlob(String columnName, Blob x) throws SQLException {
// TODO 自动生成方法存根
rs.updateBlob(columnName, x);
}
public void updateBoolean(int columnIndex, boolean x) throws SQLException {
// TODO 自动生成方法存根
rs.updateBoolean(columnIndex, x);
}
public void updateBoolean(String columnName, boolean x) throws SQLException {
// TODO 自动生成方法存根
rs.updateBoolean(columnName, x);
}
public void updateByte(int columnIndex, byte x) throws SQLException {
// TODO 自动生成方法存根
rs.updateByte(columnIndex, x);
}
public void updateByte(String columnName, byte x) throws SQLException {
// TODO 自动生成方法存根
rs.updateByte(columnName, x);
}
public void updateBytes(int columnIndex, byte[] x) throws SQLException {
// TODO 自动生成方法存根
rs.updateBytes(columnIndex, x);
}
public void updateBytes(String columnName, byte[] x) throws SQLException {
// TODO 自动生成方法存根
rs.updateBytes(columnName, x);
}
public void updateCharacterStream(int columnIndex, Reader x, int length) throws SQLException {
// TODO 自动生成方法存根
rs.updateCharacterStream(columnIndex, x, length);
}
public void updateCharacterStream(String columnName, Reader reader, int length) throws SQLException {
// TODO 自动生成方法存根
rs.updateCharacterStream(columnName, reader, length);
}
public void updateClob(int columnIndex, Clob x) throws SQLException {
// TODO 自动生成方法存根
rs.updateClob(columnIndex, x);
}
public void updateClob(String columnName, Clob x) throws SQLException {
// TODO 自动生成方法存根
rs.updateClob(columnName, x);
}
public void updateDate(int columnIndex, Date x) throws SQLException {
// TODO 自动生成方法存根
rs.updateDate(columnIndex, x);
}
public void updateDate(String columnName, Date x) throws SQLException {
// TODO 自动生成方法存根
rs.updateDate(columnName, x);
}
public void updateDouble(int columnIndex, double x) throws SQLException {
// TODO 自动生成方法存根
rs.updateDouble(columnIndex, x);
}
public void updateDouble(String columnName, double x) throws SQLException {
// TODO 自动生成方法存根
rs.updateDouble(columnName, x);
}
public void updateFloat(int columnIndex, float x) throws SQLException {
// TODO 自动生成方法存根
rs.updateFloat(columnIndex, x);
}
public void updateFloat(String columnName, float x) throws SQLException {
// TODO 自动生成方法存根
rs.updateFloat(columnName, x);
}
public void updateInt(int columnIndex, int x) throws SQLException {
// TODO 自动生成方法存根
rs.updateInt(columnIndex, x);
}
public void updateInt(String columnName, int x) throws SQLException {
// TODO 自动生成方法存根
rs.updateInt(columnName, x);
}
public void updateLong(int columnIndex, long x) throws SQLException {
// TODO 自动生成方法存根
rs.updateLong(columnIndex, x);
}
public void updateLong(String columnName, long x) throws SQLException {
// TODO 自动生成方法存根
rs.updateLong(columnName, x);
}
public void updateNull(int columnIndex) throws SQLException {
// TODO 自动生成方法存根
rs.updateNull(columnIndex);
}
public void updateNull(String columnName) throws SQLException {
// TODO 自动生成方法存根
rs.updateNull(columnName);
}
public void updateObject(int columnIndex, Object x) throws SQLException {
// TODO 自动生成方法存根
rs.updateObject(columnIndex, x);
}
public void updateObject(String columnName, Object x) throws SQLException {
// TODO 自动生成方法存根
rs.updateObject(columnName, x);
}
public void updateObject(int columnIndex, Object x, int scale) throws SQLException {
// TODO 自动生成方法存根
rs.updateObject(columnIndex, x, scale);
}
public void updateObject(String columnName, Object x, int scale) throws SQLException {
// TODO 自动生成方法存根
rs.updateObject(columnName, x, scale);
}
public void updateRef(int columnIndex, Ref x) throws SQLException {
// TODO 自动生成方法存根
rs.updateRef(columnIndex, x);
}
public void updateRef(String columnName, Ref x) throws SQLException {
// TODO 自动生成方法存根
rs.updateRef(columnName, x);
}
public void updateRow() throws SQLException {
// TODO 自动生成方法存根
rs.updateRow();
}
public void updateShort(int columnIndex, short x) throws SQLException {
// TODO 自动生成方法存根
rs.updateShort(columnIndex, x);
}
public void updateShort(String columnName, short x) throws SQLException {
// TODO 自动生成方法存根
rs.updateShort(columnName, x);
}
public void updateString(int columnIndex, String x) throws SQLException {
// TODO 自动生成方法存根
rs.updateString(columnIndex, x);
}
public void updateString(String columnName, String x) throws SQLException {
// TODO 自动生成方法存根
rs.updateString(columnName, x);
}
public void updateTime(int columnIndex, Time x) throws SQLException {
// TODO 自动生成方法存根
rs.updateTime(columnIndex, x);
}
public void updateTime(String columnName, Time x) throws SQLException {
// TODO 自动生成方法存根
rs.updateTime(columnName, x);
}
public void updateTimestamp(int columnIndex, Timestamp x) throws SQLException {
// TODO 自动生成方法存根
rs.updateTimestamp(columnIndex, x);
}
public void updateTimestamp(String columnName, Timestamp x) throws SQLException {
// TODO 自动生成方法存根
rs.updateTimestamp(columnName, x);
}
public boolean wasNull() throws SQLException {
// TODO 自动生成方法存根
return rs.wasNull();
}
}
3.如何运用
获得ResultSet的时候:
pstm=con.prepareStatement(sql, ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);//这里的属性一定要记得修改
Pageable rs=new PageableResultSet(pstm.executeQuery());//得到ResultSet
4.设置RS
rs.setPageSize(pageSize);//设置每页显示数目
rs.gotoPage(page);//设置当前选择第几页
for (int i = 0; i < rs.getPageRowsCount(); i++) {
/...进行取值.../
rs.next();//不要忘记next()
}
http://blog.csdn.net/yangxin114/article/details/1668320
重写ResultSet实现分页功能(最好的分页技术)(转)的更多相关文章
- 夺命雷公狗---DEDECMS----33dedecms自定义搜索以及分页功能完成
我们现在要开始实现模版里面的搜索功能了,我们先找要做出一个检索提交表单,如下所示: 只要我们点击生成之后我们的表单就获取到了,可以直接拿生成好的html表单拿来用来测试下.. 将他嵌入首页的模版文件, ...
- hibernate和struts2实现分页功能
1.DAO层接口的设计,定义一个PersonDAO接口,里面声明了两个方法: public interface PersonDAO { public List<Person> queryB ...
- Django 实现分页功能(django 2.2.7 python 3.7.5 )
Django 自带名为 Paginator 的分页工具, 方便我们实现分页功能.本文就讲解如何使用 Paginator 实现分页功能. 一. Paginator Paginator 类的作用是将我们需 ...
- MyBatis 拦截器 (实现分页功能)
由于业务关系 巴拉巴拉巴拉 好吧 简单来说就是 原来的业务是 需要再实现类里写 selectCount 和selectPage两个方法才能实现分页功能 现在想要达到效果是 只通过一个方法就可以实现 也 ...
- MyBatis实现拦截器分页功能
1.原理 在mybatis使用拦截器(interceptor),截获所执行方法的sql语句与参数. (1)修改sql的查询结果:将原sql改为查询count(*) 也就是条数 (2)将语句sql进行拼 ...
- Android学习随笔--ListView的分页功能
第一次写博客,可能格式,排版什么的会非常不美观,不过我主要是为了记录自己的Android学习之路,为了以后能有些东西回顾.既然是为了学习,那我肯定会吸收各位大大们的知道经验,有不足的地方请指出. 通过 ...
- JDBC使用数据库来完成分页功能
本篇讲诉如何在页面中通过操作数据库来完成数据显示的分页功能.当一个操作数据库进行查询的语句返回的结果集内容如果过多,那么内存极有可能溢出,所以在大数据的情况下分页是必须的.当然分页能通过很多种方式来实 ...
- 分页功能的实现——Jdbc && JSP
@目录 什么是分页 ? 两个子模块功能的问题分析 和 解决方案 有条件查和无条件查询的影响 和 解决方案 项目案例: mysql + commons-dbutils+itcast-tools+Base ...
- 第83节:Java中的学生管理系统分页功能
第83节:Java中的学生管理系统分页功能 分页功能一般可以做成两种,一种是物理分页,另一种是逻辑分页.这两种功能是有各自的特点的,物理分页是查询的时候,对数据库进行访问,只是查一页数据就进行返回,其 ...
随机推荐
- CocoaPods的install和update卡在“Anylyzing dependencies”的问题解决方式[效率]
问题 最新CocoaPod更新慢得问题,不管是运行pod install还是podupdate都卡在Anylyzing dependencies. 解决方式 事实上原因是运行两个命令时都会升级Coco ...
- Python语法
- Lisp: Common Lisp, Racket, Clojure, Emacs Lisp - Hyperpolyglot
Lisp: Common Lisp, Racket, Clojure, Emacs Lisp - Hyperpolyglot Lisp: Common Lisp, Racket, Clojure, E ...
- sharepoint 2010 显示和隐藏Ribbon区域条
在sharepoint 2010的页面中,我们在页面的最上方,有一条深灰色的Ribbon工具栏,如下图,这里可以通过下面的脚本,做一些脚本,来控制它的隐藏和显示. 最后把这些脚本,放在v4.maste ...
- haproxy 中的http请求和https请求
use Mojolicious::Lite; use JSON qw/encode_json decode_json/; use Encode; no strict; use JSON; # /foo ...
- poj 2411 Mondriaan's Dream dp
一个比较简单的状压dp,记录下每个点的状态即可. #include <iostream> #include <cstdio> #include <cstring> ...
- ZooKeeper的安装、配置、启动和使用(一)——单机模式
ZooKeeper的安装.配置.启动和使用(一)——单机模式 ZooKeeper的安装非常简单,它的工作模式分为单机模式.集群模式和伪集群模式,本博客旨在总结ZooKeeper单机模式下如何安装.配置 ...
- VSTO 为Office已有右键菜单添加自己的菜单项(word,Excel)
原文:VSTO 为Office已有右键菜单添加自己的菜单项(word,Excel) private void AddRightMenu() { Microsoft ...
- 如何高效地向Redis插入大量的数据(转)
最近有个哥们在群里问,有一个日志,里面存的是IP地址(一行一个),如何将这些IP快速导入到Redis中. 我刚开始的建议是Shell+redis客户端. 今天,查看Redis官档,发现文档的首页部分( ...
- cocos2dx游戏开发学习笔记3-lua面向对象分析
在lua中,能够通过元表来实现类.对象.继承等.与元表相关的方法有setmetatable().__index.getmetatable().__newindex. 详细什么是元表在这里就不细说了,网 ...