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

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

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

1. File转byte数组

File与byte数组互转、byte数组转InputStream或String_第1张图片

2. byte数组转File

File与byte数组互转、byte数组转InputStream或String_第2张图片

3. byte数组转InputStream

InputStream fileStream = new ByteArrayInputStream(bytes);

4. byte数组转String

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

你可能感兴趣的:(File与byte数组互转、byte数组转InputStream或String)