博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java 流读写文件
阅读量:5319 次
发布时间:2019-06-14

本文共 583 字,大约阅读时间需要 1 分钟。

public static void createFileToNewPath(InputStream inStream, String newPath) {        try {            int bytesum = 0;            int byteread = 0;            FileOutputStream fs = new FileOutputStream(newPath);            byte[] buffer = new byte[1444];            while ((byteread = inStream.read(buffer)) != -1) {                bytesum += byteread; // 字节数 文件大小                fs.write(buffer, 0, byteread);            }            inStream.close();        } catch (Exception e) {            e.printStackTrace();        }    }

 

转载于:https://www.cnblogs.com/sisi-five/p/3991130.html

你可能感兴趣的文章