java 中为字节数组赋值的方法有 6 种:直接赋值使用 arrays.fill() 方法从另一个数组复制使用流从字符串转换使用缓冲区

Java 中为字节数组赋值的方法

在 Java 中,您可以使用以下方法为字节数组赋值:

1. 直接赋值

byte[] byteArray = {1, 2, 3, 4, 5};
登录后复制

2. 使用 Arrays.fill() 方法

立即学习“Java免费学习笔记(深入)”;

byte[] byteArray = new byte[5];
Arrays.fill(byteArray, (byte) 10); // 用 10 填充整个数组
登录后复制

3. 从另一个数组复制

byte[] byteArray1 = {1, 2, 3, 4, 5};
byte[] byteArray2 = new byte[byteArray1.length];
System.arraycopy(byteArray1, 0, byteArray2, 0, byteArray1.length);
登录后复制

4. 使用流

ByteArrayInputStream bais = new ByteArrayInputStream(new byte[]{1, 2, 3, 4, 5});
byte[] byteArray = bais.readAllBytes();
登录后复制

5. 从字符串转换

String str = "Hello World";
byte[] byteArray = str.getBytes(); // 使用默认字符集
byte[] byteArrayWithCharset = str.getBytes(StandardCharsets.UTF_8); // 使用指定字符集
登录后复制

6. 使用缓冲区

ByteBuffer byteBuffer = ByteBuffer.allocate(5);
byteBuffer.put(1);
byteBuffer.put(2);
byteBuffer.put(3);
byteBuffer.put(4);
byteBuffer.put(5);
byte[] byteArray = byteBuffer.array();
登录后复制

以上就是java怎么给byte数组赋值的详细内容,更多请关注慧达安全导航其它相关文章!

点赞(0)

评论列表 共有 0 条评论

暂无评论
立即
投稿
发表
评论
返回
顶部