将byte []附加到另一个byte []的末尾

将byte []附加到另一个byte []的末尾,第1张

将byte []附加到另一个byte []的末尾

使用

System.arraycopy()
,应类似于以下内容

// create a destination array that is the size of the two arraysbyte[] destination = new byte[ciphertext.length + mac.length];// copy ciphertext into start of destination (from pos 0, copy ciphertext.length bytes)System.arraycopy(ciphertext, 0, destination, 0, ciphertext.length);// copy mac into end of destination (from pos ciphertext.length, copy mac.length bytes)System.arraycopy(mac, 0, destination, ciphertext.length, mac.length);


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5587119.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存