Notice
Recent Posts
Recent Comments
Link
투케이2K
570. (Android/Java) [Android 13] [유틸 파일] externalTextFileWrite : 외부 저장소 경로에 텍스트 파일 쓰기 - text 본문
Android
570. (Android/Java) [Android 13] [유틸 파일] externalTextFileWrite : 외부 저장소 경로에 텍스트 파일 쓰기 - text
투케이2K 2023. 6. 6. 18:05[개발 환경 설정]
개발 툴 : AndroidStudio
개발 언어 : Java
[소스 코드]
// -----------------------------------------------------------------------------------------
// TODO [SEARCH FAST] : [RETURN] externalTextFileWrite : 외부 저장소 경로에 텍스트 파일 쓰기
// -----------------------------------------------------------------------------------------
public static Boolean externalTextFileWrite(Context mContext, String path, String title, String content) {
/**
* // -----------------------------------------
* [externalTextFileWrite 메소드 설명]
* // -----------------------------------------
* 1. 외부 저장소 경로에 텍스트 파일 쓰기
* // -----------------------------------------
* 2. 호출 방식 :
*
* C_App.externalTextFileWrite(A_Main.this, "/test", "log.txt", "hello twok");
*
* // -----------------------------------------
* 3. 리턴 데이터 : 파일 write 성공 시 true / 아니면 false
* // -----------------------------------------
* 4. 추가로 외부 저장소에 파일 읽기 및 쓰기를 위해서 Manifest 권한 필요 및 인텐트 이동 수행
*
* 권한 : <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
*
* 인텐트 이동 : Settings.ACTION_MANAGE_APP_ALL_FILES_ACCESS_PERMISSION
* // -----------------------------------------
* 5. 참고 설명 :
*
* 해당 권한을 추가 시 마켓에 특정 용도로 사용하는 앱 목적을 밝혀야합니다 (앱 등록 및 업데이트 리젝 될 수 있습니다)
*
* 외부 저장소 경로 : /storage/emulated/0
* // -----------------------------------------
* */
// [리턴 값 선언]
boolean returnData = false;
String filePath = "";
// [로직 처리 실시]
try {
// [데이터 널 체크]
if (C_Util.stringNotNull(path) == true && title.contains(".") == true){
// [외부 저장소 경로 확인]
filePath = Environment.getExternalStorageDirectory().getAbsolutePath();
if (path.startsWith("/") == true){ // [파일 경로 지정 문자 포함 체크]
filePath = filePath + path;
}
else {
filePath = filePath + "/" + path;
}
// [파일 경로 존재 확인]
File file = new File(filePath);
boolean checkCreate = false;
if (file.exists() == true){ // [특정 경로에 폴더가 존재하는 경우]
checkCreate = true;
}
else { // [특정 경로에 폴더가 존재하지 않는 경우]
checkCreate = file.mkdirs(); // [mkdirs : 상위 폴더가 존재하지 않는 경우 상위 폴더까지 생성]
}
// [파일 경로에 제목 추가]
if (title.startsWith("/") == true){ // [문자 포함 체크]
filePath = filePath + title;
}
else {
filePath = filePath + "/" + title;
}
// [텍스트 파일 쓰기 수행]
if (checkCreate == true){
// TODO [BufferedWriter = true / 기존 콘텐츠를 유지하고 파일 끝에 새 콘텐츠를 추가합니다]
BufferedWriter buf = new BufferedWriter(new FileWriter(filePath, true));
buf.append(content); // TODO 내용 쓰기
buf.newLine(); //TODO 개행
buf.flush();
buf.close();
// [리턴 결과 삽입]
returnData = true;
}
}
} catch (Exception e) {
e.printStackTrace();
}
// [로그 출력 실시]
// ===============================================================
S_Log._D_("외부 저장소 경로에 텍스트 파일 쓰기", new String[]{
"INPUT [PATH] :: " + String.valueOf(path),
"INPUT [TITLE] :: " + String.valueOf(title),
"INPUT [CONTENT] :: " + String.valueOf(content),
"EXTERNAL [PATH] :: " + String.valueOf(filePath),
"RETURN :: " + String.valueOf(returnData)
});
// ===============================================================
// [리턴 반환 실시]
return returnData;
}
[결과 출력]
반응형
'Android' 카테고리의 다른 글
Comments