有啊
用 ResultSet.setFetchSize(int rows)
//-----------------------------------------------------
java.sql 
Interface ResultSetsetFetchSize
public void setFetchSize(int rows) throws SQLExceptionGives
   the JDBC driver a hint as to the number of rows that should be fetched from the database when more rows are needed for this ResultSet object. If the fetch size specified is zero, the JDBC driver ignores the value and is free to make its own best guess as to what the fetch size should be. The default value is set by the Statement object that created the result set. The fetch size may be changed at any time.
Parameters:
rows - the number of rows to fetch
Throws:
SQLException - if a database access error occurs or the condition 0 <= rows <= this.getMaxRows() is not satisfied
Since: 
1.2