我有一个奇怪的问题。基本上我使用的是一个只将输入作为byte []的队列服务器,所以我使用两个整数和int []并使用ByteArrayOutputStream
转换它们。它到目前为止工作正常但是因为我正在从队列中来回传输大量消息,我正在尝试压缩我的int [](它有几千个项目,但大多数都是零)。我有了接受零序列并将它们变为负值的想法(请参阅此question的答案。
但是我遇到了问题,因为要将我的bytes []转换回原来的格式,我习惯使用byte []的长度并将其除以4(因为每个int的大小为4,然后循环遍历它)。由于我在列表中引入了负值,因此大小已经改变(每个负数减1),这使我无法解压缩数据。我尝试了不同的方法将数据输入Byte []和ByteArrayOutputStream似乎是我迄今为止尝试过的最快的,除非有更快的东西,我更喜欢坚持使用这种方法。同样在我的链接问题中,接受的答案有一个方法似乎完全适合现有的for循环结构我已经用于隐藏数据(用零序列的负数替换所有零的解决方案)。
如何区分正/负字节流?
以下是代码:
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
public class compressionTest {
public static void main(String[] args) throws IOException {
//to convert to string
ByteArrayOutputStream baos = new ByteArrayOutputStream();
DataOutputStream dos = new DataOutputStream(baos);
//data
int data1 = 10;
int data2 = 43;
int[] sub = { 10, 40, 0, 0, 0, 30, 0, 100, 0, 0, 0, 0 }; //should become [10, 40, -3, 30, -1, 100, -4]
//add data to bytes
dos.writeInt(data1);
dos.writeInt(data2);
int count_zero = 0;
for (int j : sub) {
if (j == 0 ) {
//System.out.println("Equals 0!");
count_zero = count_zero + 1;
} else {
if ( count_zero != 0) {
dos.write(-1 * count_zero);
//System.out.println(-1 * count_zero);
count_zero = 0;
}
dos.writeInt(j); //orginally I just had this under the for loop and it works(if you delete the if data above)
}
}
byte[] bytes = baos.toByteArray();
System.out.println(bytes); //this is the data I send
//now bring it back
ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
DataInputStream dis = new DataInputStream(bais);
System.out.println("****");
int data1_return = 0;
int data2_return = 0;
System.out.println("size of byte[] is " + bytes.length);
//ArrayList<Integer> sub_return = new ArrayList<Integer>();
int[] sub_return = new int[(bytes.length/4)-2]; //size of data minus first two intgers
for (int item = 0; item<(bytes.length/4);item++){
if (item == 0) {
data1_return = dis.readInt();
} else if (item == 1) {
data2_return = dis.readInt();
} else {
sub_return[item-2] = dis.readInt();
}
}
//print out the data
System.out.println(data1_return);
System.out.println(data2_return);
for (int i : sub_return) {
System.out.println(i);
}
}
}
答案 0 :(得分:0)
最简单的方法可能是在开始时对完整列表的大小进行编码,所以不要使用类似{0,1,2,3,-5}的列表,而是{0,0,0, 6,0,1,2,3,5} - 然后你只需要读取前4个字节作为int,找到它们等于6,分配一个int [6],然后将你的其余部分解压缩成它