1 / 6

android Android -File

android Android -File. (DMI) Kang GiHoon. Android File. 내부 파일 res 디렉토리의 raw 파일 assets 디렉토리의 파일 sdcard 의 파일 . Android File - 내부파일. [ 에뮬레이터상의 파일위치 ]. 내부 파일 위치 : /data/data/ 패키지경로 /files/file.txt application 내에서만 접근 가능 openFileOutput () : 파일 쓰기 openFileInput () : 파일읽기.

mickey
Télécharger la présentation

android Android -File

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. android Android-File (DMI) Kang GiHoon

  2. Android File • 내부 파일 • res 디렉토리의raw 파일 • assets 디렉토리의 파일 • sdcard의 파일

  3. Android File - 내부파일 [에뮬레이터상의 파일위치] • 내부 파일 • 위치 : /data/data/패키지경로/files/file.txt • application 내에서만 접근 가능 • openFileOutput() : 파일 쓰기 • openFileInput() : 파일읽기

  4. Android File – res/raw, assets [raw 파일위치] [assets 파일위치] • res/raw , assets 파일 • 위치 : /res/raw , res/assets 디렉토리의 파일 제어 • 다른 res내 파일 (ex, res/values 의 각 xml파일)들처럼 배포시binary 형태로 배포되지 않음 • raw 디렉토리 파일 : getResources().openRawResource(R.raw.test_1) 파일 형태로 접근 • raw , assets 디렉토리 파일들은 동적으로 파일 생성 할 수 없음(?) • assets 디렉토리의 파일들은 일반적인 파일 폴더 처럼 조금은 자유로운 파일 접근 가능. • AssetManager를통한 assets 디렉토리 파일 컨트롤.

  5. Android File – sdcard [sdcard 파일위치] • 외부저장소 (sdcard) • 위치 : /sdcard/ 디렉토리내 • 외부 application에서 파일 컨트롤 가능할 수 있도록 권한부여 가능 • new File(“/sdcard/”) 또는 Environment.getExternalStorageDirectory() 로외부저장소 디렉토리지정 • android.permission.WRITE_EXTERNAL_STORAGE permission 필요

  6. Android File – Example (*) AndroidManifest.xml 에서 activity를 변경하여 실행 내부 파일 Read/Write res/raw 디렉토리내 파일 Read assets 디렉토리내 파일 Read 외부저장소(sdcard) read/Write

More Related