📜  将输入流写入文件java代码示例

📅  最后修改于: 2022-03-11 14:52:47.152000             🧑  作者: Mango

代码示例1
InputStream pdf = // greate some input stream data
try (FileOutputStream outputStream = new FileOutputStream(new File("/Users/kirkbrown/documents/my.pdf"))) {

            int read;
            byte[] bytes = new byte[1024];

            while ((read = pdf.read(bytes)) != -1) {
                outputStream.write(bytes, 0, read);
            }
        }