[안드로이드] txt 파일 내용 읽기!!(한글깨짐 문제 해결)
프로그래밍/안드로이드2020. 10. 11. 01:54
반응형
안드로이드에서 txt 파일 읽어 올때 한글 파일이 깨질때가 있습니다
아래와 같이 사용하시면 한글 파일 깨짐 없이 한글포함 txt 파일을 읽어 올수 있습니다
String text = null;
int i;
try {
InputStream inputStream = new FileInputStream(filePath);
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
i = inputStream.read();
while (i != -1) {
//if(i == 64) {byteArrayOutputStream.write('\n');byteArrayOutputStream.write('\n');}
//else
byteArrayOutputStream.write(i);
i = inputStream.read();
}
text = new String(byteArrayOutputStream.toByteArray(),"MS949");
inputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
반응형
'프로그래밍 > 안드로이드' 카테고리의 다른 글
안드로이드 앱(APK) 디컴파일(Decompile)로 소스 보기!! (1) | 2021.02.10 |
---|---|
[안드로이드] 아주 간단히 Listview 사용하기!!! (0) | 2020.11.09 |
[안드로이드] RxAndroid 사용법 및 정리!!(asynctask deprecated) (0) | 2020.09.26 |
[안드로이드] App restart successful without requiring a re-install 에러 해결 방법!! (0) | 2020.09.03 |
[안드로이드] sqlite 특정 조건에 맞지 않는 데이터만 삭제 하는 방법!!! (0) | 2020.09.01 |