关于 substring 的问题
String Account=rs.getString("account");Account.substring(0,160);
从库里提出 1000个字,我只想显示 前面 160个
可 substring 只要后面的数 大于10 就报错
谁能帮忙解决一下?
其他方法也可以,能实现功能就OK!!
public String substring(int beginIndex, int endIndex)
beginIndex
and extends to the character at index endIndex - 1
. Thus the length of the substring is endIndex-beginIndex
.