일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Android
- android:allowBackup
- keytool
- Oreo
- java
- Hilt
- 안드로이드 파이
- How to Android TextFile Reader?
- illegalstateexception
- How to check permission?
- @InstallIn
- 스토어확인
- 안드로이드백업
- 투명액티비티 오류
- TedPermission
- 텍스트파일 읽기
- Check Permission
- AndroidBackup
- 개발자
- TextFileReader
- 구글
- 안드로이드
- 권한 체크
- 로그인정보
- Permission Check
- Cleartext
- dagger
- 설치확인
- IOException
- It
- Today
- Total
목록java (2)
사슴벌레의 개발블로그
텍스트 파일 읽어들이는 방법은 여러가지가 있겠지만 간단하게 그냥 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..
앱시작시 전체 권한여부 체크할때 필요해서 예전에 만든거...Permission관련 라이브러리는 Tedpermission이 잘되어있음.. import android.content.Context;import android.content.pm.ApplicationInfo;import android.content.pm.PackageInfo;import android.content.pm.PackageManager; import java.util.ArrayList; public class PermissionUtils { // 아래는 주요퍼미션들 public static final String CALENDAR[] = {"android.permission.READ_CALENDAR", "android.permission..