☆eri
unread,Oct 29, 2009, 10:32:38 PM10/29/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Android-SDK-Japan
openFileOutputで保存したデータはPCの何処に保存されるのでしょうか?
保存したデータを直接、バイナリエディタなどで編集したいと思っているのですが見つける事ができません。。。
プログラムは以下のものを使っています。
private void write_data(Activity p_activity, String p_fileName, byte
p_data[])
{
OutputStream out = null;
try
{
out = p_activity.openFileOutput(p_fileName, Context.MODE_PRIVATE);
out.write(p_data, 0, p_data.length);
out.close();
}
catch (Exception e)
{
}
try{if (out != null)out.close();}catch (Exception e){out = null;}
}
よろしくお願いします。