Notice
Recent Posts
Recent Comments
Link
설.현.아빠
동일 사용자 아이디로 파일 공유 본문
byte[] buf = new byte[1024 + 1]; FileInputStream finp = OpenFileInput(filename); FileOutputStream fout = OpenFileOutput(filename, Context.MODE_PRIVATE); while (finp.read(buf) != -1) { new String(buf);}finp.close(); fout.write(String.getBytes()); fout.flush();fout.close();File 입출력
'안드로이드 > File' 카테고리의 다른 글
FileReader / FileWriter (0) | 2011.02.11 |
---|---|
[파일 정리 1]. SD Card에 파일 생성하고, 내용 저장하기. (1) | 2011.02.11 |
안드로이드 예제 강좌 2(14. 파일작업 1) (0) | 2011.02.11 |
FileInputStream, FileOutputStream을 이용하여 SDCard에 파일 읽고 쓰기. (1) | 2011.02.11 |
android sdcard 에 파일 생성. (0) | 2011.02.11 |
Comments