把文件转换成流【常用文件存数据库操作】
程序员文章站
2022-06-09 21:12:09
...
文件转流
public static byte[] file2byte(String filePath) {
byte[] buffer = null;
try {
File file = new File(filePath);
FileInputStream fis = new FileInputStream(file);
ByteArrayOutputStream bos = new ByteArrayOutputStream();
byte[] b = new byte[1024];
int n;
while ((n = fis.read(b)) != -1) {
bos.write(b, 0, n);
}
fis.close();
bos.close();
buffer = bos.toByteArray();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return buffer;
}
流转文件
public void byte2File(byte[] buf, String filePath, String fileName) {
BufferedOutputStream bos = null;
FileOutputStream fos = null;
File file = null;
try {
File dir = new File(filePath);
if (!dir.exists() && dir.isDirectory()) {
dir.mkdirs();
}
file = new File(filePath + File.separator + fileName);
fos = new FileOutputStream(file);
bos = new BufferedOutputStream(fos);
bos.write(buf);
} catch (Exception e) {
e.printStackTrace();
} finally {
if (bos != null) {
try {
bos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (fos != null) {
try {
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
推荐阅读
-
把文件转换成流【常用文件存数据库操作】
-
mysql-MySQL数据库能转换成SQLServer吗?我有一个MySQL的脚本文件怎么才能在SQLServer里操作
-
如果变量初始化过程比较复杂,但又经常用到,通常把它存成什么文件?该怎么解决
-
怎么把smarty生成的编译文件改为存进数据库
-
如何把smarty生成的编译文件改为存进数据库
-
音频文件使用二进制存入数据库,php有什么方法可以把二进制转换成音频文件?该怎么解决
-
mysql-MySQL数据库能转换成SQLServer吗?我有一个MySQL的脚本文件怎么才能在SQLServer里操作
-
怎么把smarty生成的编译文件改为存进数据库
-
如何把smarty生成的编译文件改为存进数据库
-
音频文件使用二进制存入数据库,php有什么方法可以把二进制转换成音频文件?该怎么解决