◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
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();
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。