Fileとbyte[]変換
Fileはbyte[]に変換されます.次に、Fileのパスパラメータを示します.
byte[]をFileに変換し、パラメータを入力します:ファイルbyte[]、ファイル変換後のパス(ファイル名.フォーマットを含まない)、ファイル名(フォーマットを含む)
public static byte[] getBytesByFile(String filePath) {
try {
File file=new File(filePath);
//
FileInputStream fis = new FileInputStream(file);
// byte , 1024byte
ByteArrayOutputStream bos = new ByteArrayOutputStream(1024);
//
byte[] b = new byte[1024];
int n;
while ((n = fis.read(b)) != -1) {
bos.write(b, 0, n);
}
fis.close();
// byte[]
byte[] data = bos.toByteArray();
//
bos.close();
return data;
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
byte[]をFileに変換し、パラメータを入力します:ファイルbyte[]、ファイル変換後のパス(ファイル名.フォーマットを含まない)、ファイル名(フォーマットを含む)
public static void getFileByBytes(byte[] bytes, 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 + "\\" + fileName);
//
fos = new FileOutputStream(file);
//
bos = new BufferedOutputStream(fos);
//
bos.write(bytes);
} 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();
}
}
}
}