Java 报错为The operator & is undefined for the argument type(s) byte[], int,程序如下,请教怎么办

privateStringbytesToHexStr(byte[]b){//TODOAuto-generatedmethodstubif(b==null)returnnu... private String bytesToHexStr(byte[] b) {
// TODO Auto-generated method stub
if (b == null) return null;
StringBuffer strBuffer = new StringBuffer(b.length * 3);
for(int i = 0; i < b.length; i++)
{
strBuffer.append(Integer.toHexString(b & 0xff));
strBuffer.append(" ");
}
return strBuffer.toString();
}
展开
 我来答
召秋梵悌p1
2012-05-15 · TA获得超过2282个赞
知道小有建树答主
回答量:616
采纳率:80%
帮助的人:685万
展开全部
错误提醒很明显:&符号不能用于 字节数组与int之间。
for循环中那句:
strBuffer.append(Integer.toHexString(b & 0xff));
改成strBuffer.append(Integer.toHexString(b[i] & 0xff));试试。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式