在Android开发,对于文件的访问权限中说明我感觉不是很清楚,用了一个小例子来说明android创建文件,用另外一个应用去访问创建的文件。
在android文件创建的模式中使用MODE_PRIVATE创建文件,API中的解释如下:
File creation mode: the default mode, wherethe created file can only be accessed by the calling application (or allapplications sharing the same user ID)。
对于我的理解,对于一个应用以MODE_PRIVATE模式创建的文件只能被调用的应用(或是共享相同的用户ID的应用)访问。
context.MODE_PRIVATE:是默认的操作模式,它代表这个文件是私有的,只能被应用本身访问。(网上这样解释的)
save方法是通过filename,content来保存文件。
public void save(String filename, String content) throws Exception{ FileOutputStream out = context.openFileOutput(filename, Context.MODE_PRIVATE); out.write(content.getBytes()); out.close(); }
按照context.MODE_PRIVATE的解释该filename的文件只能由该应用本身访问。我尝试另外写了一个应用来对其该应用创建的文件进行访问,创建的文件为123.txt,其属性如下:
//testAccessOtherAppFile()方法对123.txt进行访问;位于另一项目中 public class FileotherActivityTest extends AndroidTestCase { private static final String TAG = "FileotherActivityTest"; public void testAccessOtherAppFile() throws Exception{ String path ="/data/data/com.android/files/123.txt"; File file = new File(path); FileInputStream in =new FileInputStream(file); byte[] buffer = new byte[1024]; int len = 0; ByteArrayOutputStream out = new ByteArrayOutputStream(); while(-1 != (len = in.read(buffer))){ out.write(buffer, 0, len); } //得到文件的二进制数据 byte[] data = out.toByteArray(); out.close(); in.close(); Log.i(TAG, new String(data)); } }