最近用到的各种数据类型的转换方法,非原创,亲测可用,记录如下:
【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");
网友评论