gpt4 book ai didi

Java文件逆向读写【byte by byte】

转载 作者:行者123 更新时间:2023-11-30 10:18:38 29 4
gpt4 key购买 nike

我需要从这个文本文件source.txt中读取内容并将内容反向写入这个文本文件destination.txt。读取和写入必须使用逐字节完成!

我使用 BufferedReaderBufferedWriter 做了这个练习,它给你一整行作为一个字符串,然后很容易反转它!

但是我不知道如何使用逐字节倒序写!感谢您的帮助!

source.txt 包含以下文本:“操作系统”

destination.txt 上的结果应该是 source.txt 的相反结果: "smetsyS gnitarepO"

代码如下:

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;

public class Main {

public static void main(String[] args) throws IOException{

FileInputStream in = null;
FileOutputStream out = null;

try {
in = new FileInputStream("source.txt");
out = new FileOutputStream("destination.txt");


int c;

while ((c = in.read()) != -1) {

out.write(c);
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} finally {
if (in != null) {
in.close();
}
if (out != null) {
out.close();
}
}
}
}

最佳答案

您可以使用 RandomAccessFile 进行阅读:

...
in = new RandomAccessFile("source.txt", "r");
out = new FileOutputStream("destination.txt");
for(long p = in.length() - 1; p >= 0; p--) {
in.seek(p);
int b = in.read();
out.write(b);
}
...

关于Java文件逆向读写【byte by byte】,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49150047/

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