回 帖 发 新 帖 刷新版面

主题:java 有没有用字节长度截取字符串的方法?

java 有没有用字节长度截取字符串的方法?

回复列表 (共2个回复)

沙发

可以把String转化成byte数组,然后截取

板凳

用用这个方法  public String substring(int starIndex,int endIndex)
方法中获取已知字符串中,从第starIndex个字符开始,到第endIndex个的前一个字符为止的子串
首字符的位置为0。
 如    public class 查找子串 {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        // char ch=System.in.read();
    String s="Welcome your!";
      System.out.println(s.length());   //返回字符串s的长度
      System.out.println(s.substring(2,9)); //获取字符串s的第2位到第8位的子串
    
    }
}
运行结果:13
          lcome y

我来回复

您尚未登录,请登录后再回复。点此登录或注册