我有一个一维String数组,我想将其转换为一维字节数组。我该怎么做呢?这需要ByteBuffer吗?我怎样才能做到这一点? (字符串可以是任意长度,只是想知道如何进行这样的操作。在将它转换为字节数组后,我怎么能将它转换回String数组?
-Dan
答案 0 :(得分:13)
数组到数组您应该将手动转换为双方进行解析,但如果您只有一个字符串,则可以String.getBytes()
和new String(byte[] data)
;
像这样
public static void main(String[] args) {
String[] strings = new String[]{"first", "second"};
System.out.println(Arrays.toString(strings));
byte[][] byteStrings = convertToBytes(strings);
strings = convertToStrings(byteStrings);
System.out.println(Arrays.toString(strings));
}
private static String[] convertToStrings(byte[][] byteStrings) {
String[] data = new String[byteStrings.length];
for (int i = 0; i < byteStrings.length; i++) {
data[i] = new String(byteStrings[i], Charset.defaultCharset());
}
return data;
}
private static byte[][] convertToBytes(String[] strings) {
byte[][] data = new byte[strings.length][];
for (int i = 0; i < strings.length; i++) {
String string = strings[i];
data[i] = string.getBytes(Charset.defaultCharset()); // you can chose charset
}
return data;
}
来自字符串[]的一个字节[]你必须:
答案 1 :(得分:3)
你没有说你想用字节做什么(除了之后将它们转换回String[]
),但假设你可以把它们视为不透明的数据包(这样你就可以节省)他们到一个文件或通过网络发送它们或诸如此类,但你不需要以任何方式检查或修改它们,我认为你最好的选择是使用序列化。要序列化您的字符串数组,您可以编写如下内容:
final String[] stringArray = { "foo", "bar", "baz" };
final ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
final ObjectOutputStream objectOutputStream =
new ObjectOutputStream(byteArrayOutputStream);
objectOutputStream.writeObject(stringArray);
objectOutputStream.flush();
objectOutputStream.close();
final byte[] byteArray = byteArrayOutputStream.toByteArray();
然后恢复它,你会写相反的:
final ByteArrayInputStream byteArrayInputStream =
new ByteArrayInputStream(byteArray);
final ObjectInputStream objectInputStream =
new ObjectInputStream(byteArrayInputStream);
final String[] stringArray2 = (String[]) objectInputStream.readObject();
objectInputStream.close();
答案 2 :(得分:1)
首先声明我在此处声明的字符串str="Suresh"
第二次使用getBytes()
将其转换为字节
getBytes 返回byte的数组。
String str="Suresh";
byte[] s=str.getBytes();
答案 3 :(得分:0)
String.getBytes()
?是你正在寻找的。 p>
答案 4 :(得分:0)
您可以迭代每个字符串并继续追加到最终的字节数组。
String example = "This is an example";
//Convert String to byte[] using .getBytes() function
byte[] bytes = example.getBytes();
//Convert byte[] to String using new String(byte[])
String s = new String(bytes);
答案 5 :(得分:0)
我会将此视为序列化问题,并将其实现如下(完整且可用的Java代码):
import java.nio.ByteBuffer;
import java.util.ArrayList;
public class Serialization {
public static byte[] serialize(String[] strs) {
ArrayList<Byte> byteList = new ArrayList<Byte>();
for (String str: strs) {
int len = str.getBytes().length;
ByteBuffer bb = ByteBuffer.allocate(4);
bb.putInt(len);
byte[] lenArray = bb.array();
for (byte b: lenArray) {
byteList.add(b);
}
byte[] strArray = str.getBytes();
for (byte b: strArray) {
byteList.add(b);
}
}
byte[] result = new byte[byteList.size()];
for (int i=0; i<byteList.size(); i++) {
result[i] = byteList.get(i);
}
return result;
}
public static String[] unserialize(byte[] bytes) {
ArrayList<String> strList = new ArrayList<String>();
for (int i=0; i< bytes.length;) {
byte[] lenArray = new byte[4];
for (int j=i; j<i+4; j++) {
lenArray[j-i] = bytes[j];
}
ByteBuffer wrapped = ByteBuffer.wrap(lenArray);
int len = wrapped.getInt();
byte[] strArray = new byte[len];
for (int k=i+4; k<i+4+len; k++) {
strArray[k-i-4] = bytes[k];
}
strList.add(new String(strArray));
i += 4+len;
}
return strList.toArray(new String[strList.size()]);
}
public static void main(String[] args) {
String[] input = {"This is","a serialization problem;","string concatenation will do as well","in some cases."};
byte[] byteArray = serialize(input);
String[] output = unserialize(byteArray);
for (String str: output) {
System.out.println(str);
}
}
}
我们的想法是,在生成的字节数组中,我们存储第一个字符串的长度(如果我们使用类型int
,则总是4个字节),然后是第一个字符串的字节(其长度可以是稍后从前4个字节读取),然后是第二个字符串的长度和第二个字符串的字节,依此类推。这样,可以从生成的字节数组中轻松恢复字符串数组,如上面的代码所示。这种序列化方法可以处理任何情况。
如果我们对输入字符串数组做出假设,代码可以简单得多:
public class Concatenation {
public static byte[] concatenate(String[] strs) {
StringBuilder sb = new StringBuilder();
for (int i=0; i<strs.length; i++) {
sb.append(strs[i]);
if (i != strs.length-1) {
sb.append("*.*"); //concatenate by this splitter
}
}
return sb.toString().getBytes();
}
public static String[] split(byte[] bytes) {
String entire = new String(bytes);
return entire.split("\\*\\.\\*");
}
public static void main(String[] args) {
String[] input = {"This is","a serialization problem;","string concatenation will do as well","in some cases."};
byte[] byteArray = concatenate(input);
String[] output = split(byteArray);
for (String str: output) {
System.out.println(str);
}
}
}
假设输入数组中的任何字符串中都不存在*.*
。换句话说,如果您事先知道某些特殊符号序列不会出现在输入数组的任何字符串中,您可以将该序列用作分割器。
答案 6 :(得分:0)
您可以查看
package javaapplication2;
import java.util.Arrays;
/**
*
* @author Ali
*/
public class JavaApplication2 {
public static byte[] to_byte(String[] strs) {
byte[] bytes=new byte[strs.length];
for (int i=0; i<strs.length; i++) {
bytes[i]=Byte.parseByte(strs[i]);
}
return bytes;
}
public static void main(String[] args) {
String[] input = {"1","2","3"}; //original data
byte[] byteArray = to_byte(input);//data to byte array
String[] recovered=Arrays.toString( byteArray).split(",");// recovered data
}
}