将数据从 BufferedReader 写入文件?

发布于 2024-12-11 02:02:56 字数 171 浏览 1 评论 0原文

在Java中...

我将数据存储在BufferedReader中。 (我得到它作为对 HTTP post 请求的响应。)

如何将此(二进制)数据写入文件?

我知道如何将字符串写入文件,但如何获取 BufferedReader 中的数据并将其放入文件中。

提前致谢!

In Java...

I have data stored in a BufferedReader. (I got it as a response to an HTTP post request.)

How do I write this (binary) data to a file?

I know how to write Strings to files, but how do I take the data in the BufferedReader and put it into a file.

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

乖不如嘢 2024-12-18 02:02:56

不要使用 Reader 来获取字节。 Reader用于读取字符数据,而不是二进制数据。直接使用InputStream。

void write(InputStream is, OutputStream os) throws IOException {
    byte[] buf = new byte[512]; // optimize the size of buffer to your need
    int num;
    while ((num = is.read(buf)) != -1) {
      os.write(buf, 0, num);
    }
}

Do not use a Reader to get bytes. Reader is used for reading character data, not binary data. Use the InputStream directly.

void write(InputStream is, OutputStream os) throws IOException {
    byte[] buf = new byte[512]; // optimize the size of buffer to your need
    int num;
    while ((num = is.read(buf)) != -1) {
      os.write(buf, 0, num);
    }
}
蓝咒 2024-12-18 02:02:56

Basic I/O 开始,然后执行 i,然后执行 o,或者如果你想节省内存 i/o,i/oi/o(冲洗并重复直到不再有 i)。

Start with Basic I/O then do the i, then the o, or if you want to conserve memory i/o, i/o i/o (rinse and repeat till no more i).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文