Notice
Recent Posts
Recent Comments
Link
관리 메뉴

설.현.아빠

동일 사용자 아이디로 파일 공유 본문

안드로이드/File

동일 사용자 아이디로 파일 공유

설.현.아빠 2011. 2. 11. 10:23



File 입출력

  • File 입출력
  • /data/data/$PACKAGE_HOME/files/fileName

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();

  • 동일 사용자 아이디로 파일 공유
  • AndroidManifest.xml 파일에서 android:sharedUserId = "sameUser";

http://www.jopenbusiness.com/mediawiki/index.php/Android_-_%EC%9E%85%EC%B6%9C%EB%A0%A5#File_.EC.9E.85.EC.B6.9C.EB.A0.A5

Comments