gpt4 book ai didi

java - 在 JAVA 中向文件写入/读取可变字节编码字符串表示形式

转载 作者:太空宇宙 更新时间:2023-11-04 12:02:21 25 4
gpt4 key购买 nike

大家好!我最近了解了可变字节编码。例如,如果文件包含以下数字序列:824 5 214577应用可变字节编码,该序列将被编码为 000001101011100010000101000011010000110010110001。现在我想知道如何将其写入另一个文件中,以便从原始文件生成一种压缩文件。以及类似的如何阅读它。我正在使用 JAVA 。

尝试过这个:

LinkedList<Integer> numbers = new LinkedList<Integer>();
numbers.add(824);
numbers.add(5);
numbers.add(214577);
String code = VBEncoder.encodeToString(numbers);//returns 000001101011100010000101000011010000110010110001 into code
File file = new File("test.compressed");
DataOutputStream out = new DataOutputStream(new BufferedOutputStream(new FileOutputStream(file)));
out.writeBytes(code);
out.flush();

这只是将二进制表示形式写入文件......这不是我所期望的。

我也尝试过这个:

LinkedList<Integer> code = VBEncoder.encode(numbers);//returns linked list of Byte(i give its describtion later)
File file = new File("test.compressed");
DataOutputStream out = new DataOutputStream(new BufferedOutputStream(new FileOutputStream(file)));

for(Byte b:code){
out.write(b.toInt());
System.out.println(b.toInt());
}
out.flush();
// he goes the describtion of the class Byte
class Byte {
int[] abyte;
Byte() {
abyte = new int[8];
}
public void readInt(int n) {
String bin = Integer.toBinaryString(n);

for (int i = 0; i < (8 - bin.length()); i++) {
abyte[i] = 0;
}
for (int i = 0; i < bin.length(); i++) {
abyte[i + (8 - bin.length())] = bin.charAt(i) - 48;
}
}

public void switchFirst() {
abyte[0] = 1;
}

public int toInt() {
int res = 0;
for (int i = 0; i < 8; i++) {
res += abyte[i] * Math.pow(2, (7 - i));
}
return res;
}

public static Byte fromString(String codestring) {
Byte b = new Byte();
for(int i=0; i < 8; i++)
b.abyte[i] = (codestring.charAt(i)=='0')?0:1;
return b;
}

public String toString() {
String res = "";
for (int i = 0; i < 8; i++) {
res += abyte[i];
}
return res;
}
}

它在控制台中打印:

6
184
133
13
12
177

第二次尝试似乎有效...输出文件大小为 6 字节,而第一次尝试为 48 字节。但第二次尝试的问题是我无法成功读回文件。

InputStreamReader inStream = new InputStreamReader(new FileInputStream(file));

int c = -1;
while((c = inStream.read()) != -1){
System.out.println( c );
}

我明白了:

6
184
8230
13
12
177

..所以也许我的做法是错误的:期待从你那里得到一些好的建议。谢谢!

最佳答案

已解决;我只是没有以正确的方式读取文件:以下是正确的方式:

DataInputStream inStream = null; 
inStream = new DataInputStream(new BufferedInputStream(newFileInputStream(file)));

int c = -1;
while((c = inStream.read()) != -1){
Byte b = new Byte();
b.readInt(c);
System.out.println( c +":" + b.toString());
}

现在我得到的结果是:

6:00000110
184:10111000
133:10000101
13:00001101
12:00001100
177:10110001

现在,将原始整数序列写入可变编码字节的重要性减少了文件的大小;如果我们通常在文件中写入这个整数序列,则其大小将为 12 字节(3 * 4 字节)。但现在只有 6 个字节。

int c = -1;
LinkedList<Byte> bytestream = new LinkedList<Byte>();
while((c = inStream.read()) != -1){
Byte b = new Byte();
b.readInt(c);
bytestream.add(b);
}
LinkedList<Integer> numbers = VBEncoder.decode(bytestream);
for(Integer number:numbers) System.out.println(number);
//
//here goes the code of VBEncoder.decode
public static LinkedList<Integer> decode(LinkedList<Byte> code) {
LinkedList<Integer> numbers = new LinkedList<Integer>();
int n = 0;
for (int i = 0; !(code.isEmpty()); i++) {
Byte b = code.poll();
int bi = b.toInt();
if (bi < 128) {
n = 128 * n + bi;
} else {
n = 128 * n + (bi - 128);
numbers.add(n);
n = 0;
}
}
return numbers;
}

我取回序列:

824
5
214577

关于java - 在 JAVA 中向文件写入/读取可变字节编码字符串表示形式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40779220/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com