这是我正在使用的方法我感觉BAYE设置成1024*10非常的浪费但是我不知道该怎么给他赋最合适的值谁帮帮我解决一下 3Q 3Q
    
public static String getNR(ResultSet res) throws SQLException, IOException {
String nr = null; InputStream fis = res.getBinaryStream("nr"); byte[] b = new byte[10 * 1024]; fis.read(b); nr = new String(b); return nr;
}