把字符串字节数组写入文件

Posted east7

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了把字符串字节数组写入文件相关的知识,希望对你有一定的参考价值。

    /**
     * Java,把字符串字节数组写入文件
     * @param byt
     * @throws Exception
     */
    private static void byte2File(byte[] byt) throws Exception {
        if (null == byt) {
            return;
        }
        String targetFile = "C:\Users\fileTestTarget.txt";
        File file = new File(targetFile);
        OutputStream output = new FileOutputStream(file);
        BufferedOutputStream out = new BufferedOutputStream(output);
        InputStream in = new ByteArrayInputStream(byt);
        byte[] buff = new byte[1024];
        int len = 0;
        while ((len = in.read(buff)) != -1) {
            out.write(buff, 0, len);
        }
        in.close();
        out.close();
        System.out.println("---- done ----");
    }

       如果入参是字符串“HelloWorld”的字节数组,则可以吧HellowWorld写入fileTestTarget.txt。

以上是关于把字符串字节数组写入文件的主要内容,如果未能解决你的问题,请参考以下文章

将字节数组写入文件Javascript

c# 将字符串以二进制形式写入文件

Java IO学习--字节和字符数组

如何将字节数组写入文件? [复制]

如何将字节数组写入 Android 中的文件?

web代码片段