android byte 형식 파일 저장, 추가 저장
5605 단어 안드로이드 길
public static void saveByte(byte[] bytes, String str)
{
FileOutputStream fos = null;
try {
fos = new FileOutputStream(str);
fos.write(bytes, 0, bytes.length);
fos.flush();
fos.close();
} catch (Exception e) {
e.printStackTrace();
}
}
참고로 추가 저장.
/**
* : FileWriter
*
* @param fileName
* @param content
*/
public static void writeFileAdd(String fileName, String content) {
FileWriter writer = null;
try {
// , true
writer = new FileWriter(fileName, true);
writer.write(content);
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if(writer != null){
writer.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}