本文介绍了byte []数组的长度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

String str = "123456789";
byte[] bytes = str.getBytes();

我想进行以下循环

for (int j = 0; j < bytes.length(); j++) {
  b = bytes[j];
}

b 将存储数组的每个字节,但是我似乎无法正确获取数组的长度。

b will store each byte of my array, but I can't seem to get the length of the array correctly.

Error:cannot find symbol
Problem solved:  bytes.length instead of  bytes.length()


推荐答案

使用 bytes.length 而不使用()

这篇关于byte []数组的长度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-18 17:59