This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
java:
//查询sql
String sql = "select * from tab_department_bak where depttypeid=?";
//实例化一个分页查询对象
//方法一:传入参数JDBCPageQuery对象和HttpServletRequest对象
PageQuery pageQuery = new PageQuery(new JDBCPageQuery(conn,sql,"10",new HashFmlBufResultSetHandler()),request);
//方法二:
PageQuery pageQuery = new PageQuery(conn,sql,'10',new HashFmlBufResultHandler(),request);