/* map log 저장 */ public void Save() { File file; String path = Environment.getExternalStorageDirectory()+"/android/data/pe.berabue.maptools/map"; file = new File(path); if( !file.exists() ) // 원하는 경로에 폴더가 있는지 확인 file.mkdirs(); file = new File(path+"/myTest11.txt"); try{ FileOutputStream fos = new FileOutputStream(file); fos.write(mMapManager.PrintLog().getBytes()); fos.close(); Toast.makeText(context, "Save Success", Toast.LENGTH_SHORT).show(); } catch(IOException e){} }
맵툴 제작에 사용중인 소스.
경로를 얻어와 폴더가 없으면 폴더를 생성하고 내용을 받아와 파일을 생성한다.
구현중 : 텍스트 파일 이름 입력받기, 저장된 파일 리스트뷰로 나타내기
'Android > File' 카테고리의 다른 글
프로젝트에 포함된 이미지를 SdCard로 이동시키기. (0) | 2011.06.12 |
---|---|
단말기 내부에 폴더 및 txt파일 생성하기 (0) | 2011.03.02 |
Sd Card 이미지 읽어오기 (0) | 2011.02.14 |
txt 파일 읽어오기 (0) | 2011.02.11 |
SD Card에 폴더 생성하기 (0) | 2011.01.31 |