美文网首页Java 杂谈
File与byte数组互转、byte数组转InputStream

File与byte数组互转、byte数组转InputStream

作者: 阿历Ali | 来源:发表于2017-11-28 17:47 被阅读0次

    最近用到的各种数据类型的转换方法,非原创,亲测可用,记录如下:

    【File转byte数组、byte数组转File】源码链接 http://note.youdao.com/noteshare?id=9dfb9bbbb49e702aeb90d50358282cc6

    1. File转byte数组

    2. byte数组转File

    3. byte数组转InputStream

    InputStream fileStream = new ByteArrayInputStream(bytes);

    4. byte数组转String

    String str = new String(bytes, "utf-8");

    相关文章

      网友评论

        本文标题:File与byte数组互转、byte数组转InputStream

        本文链接:https://www.haomeiwen.com/subject/veyebxtx.html