Java字符串的最大长度

 String内部是以char数组的形式存储,数组的长度是int类型,那么String允许的最大长度就是Integer.MAX_VALUE了,2147483647;

又由于java中的字符是以16位存储的,因此大概需要4GB的内存才能存储最大长度的字符串。

 

所以,发送xml批量的需要在oracle数据库中用clob类型,而在java 端可以用String;

 

 

 ResultSet rs = st.executeQuery("select CLOBATTR from TESTCLOB where ID=1");
if (rs.next())
  {
  java.sql.Clob clob = rs.getClob("CLOBATTR");
  inStream = clob.getCharacterStream();
  char[] c = new char[(int) clob.length()];
  inStream.read(c);
  //data是读出并需要返回的数据,类型是String
  data = new String(c);
  inStream.close();
  }
  inStream.close();
  con.commit();

你可能感兴趣的:(java)