Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 스토어확인
- AndroidBackup
- 텍스트파일 읽기
- 안드로이드
- Hilt
- 구글
- It
- illegalstateexception
- 안드로이드 파이
- 개발자
- keytool
- dagger
- 로그인정보
- java
- How to Android TextFile Reader?
- TedPermission
- TextFileReader
- Cleartext
- android:allowBackup
- Oreo
- Check Permission
- IOException
- 안드로이드백업
- @InstallIn
- Android
- 권한 체크
- Permission Check
- 투명액티비티 오류
- 설치확인
- How to check permission?
Archives
- Today
- Total
목록텍스트파일 (1)
사슴벌레의 개발블로그
안드로이드 텍스트파일 읽기
텍스트 파일 읽어들이는 방법은 여러가지가 있겠지만 간단하게 그냥 txt파일 읽어들이는 방법app\src\main\res\raw\에 넣어두면 됨 /** * @param resId res\raw\파일 * @return txt내용 */ public String readTxtfile(Context context, int resId) { String result = ""; InputStream txtResource = context.getResources().openRawResource(resId); ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); int i; try { i = txtResource.read(); while (i..
Android
2019. 1. 2. 09:58