在LINUX下每个文件都有一个权限的属性 ,那么在Android中怎么用java改变某个文件的权限呢?

Android中有两种方法可以改变文件的权限

1. 用openFileOutput方法:

[java] view plain copy
  1. FileOutputStreamfos;
  2. fos=openFileOutput("filename",MODE_WORLD_READABLE);

FileOutputStreamandroid.content.ContextWrapper.openFileOutput(Stringname, int mode) throwsFileNotFoundException

Open a private file associated with this Context's application package for writing. Creates the file if it doesn't already exist.

可用的mode 参数如下:

/**
* File creation mode: the default mode, where the created file can only
* be accessed by the calling application (or all applications sharing the
* same user ID).
* @see #MODE_WORLD_READABLE
* @see #MODE_WORLD_WRITEABLE
*/
public static final int MODE_PRIVATE = 0x0000;
/**
* File creation mode: allow all other applications to have read access
* to the created file.
* @see #MODE_PRIVATE
* @see #MODE_WORLD_WRITEABLE
*/
public static final int MODE_WORLD_READABLE = 0x0001;
/**
* File creation mode: allow all other applications to have write access
* to the created file.
* @see #MODE_PRIVATE
* @see #MODE_WORLD_READABLE
*/
public static final int MODE_WORLD_WRITEABLE = 0x0002;
/**
* File creation mode: for use with {@link #openFileOutput}, if the file
* already exists then write data to the end of the existing file
* instead of erasing it.
* @see #openFileOutput
*/
public static final int MODE_APPEND = 0x8000;

其实该方法最终还是调用了系统的chmod来实现的改变文件权限的功能。

但是该方法有局限性,他创建的文件只能位于该程序的私有目录下,即/data/data/app-package/files/

2. 用Runtime.getRuntime().exec()

[c-sharp] view plain copy
  1. Runtime.getRuntime().exec("chmod644"+filename);

该方法调用系统命令chmod来改变文件的权限,为了能判断命令的返回值,最好写成:

[java] view plain copy
  1. Processp=Runtime.getRuntime().exec("chmod644"+filename);
  2. intstatus=p.waitFor();
  3. if(status==0){
  4. //chmodsucceed
  5. }else{
  6. //chmodfailed
  7. }

更多相关文章

  1. Mapbox Android学习笔记(1)简介
  2. Android(安卓)Handler消息机制(源码分析)
  3. Android中Handler Runnable与Thread的区别详解
  4. Android-缓存数据保存-通用方法
  5. 关于Base64解码和编码报错的问题
  6. 浅谈Java中Collections.sort对List排序的两种方法
  7. NPM 和webpack 的基础使用
  8. Python list sort方法的具体使用
  9. 【阿里云镜像】使用阿里巴巴DNS镜像源——DNS配置教程

随机推荐

  1. android数据五种存储
  2. linux32位下使用Android提示 ERROR: 32-b
  3. [ANDROID]APP加载界面完毕时回调,onWindow
  4. android初中高开发工程师必需要装的一个A
  5. Android学习笔记之Button的点击事件切换
  6. Android文档学习08_自定义view
  7. Android(安卓)Setting网络配置界面,删除已
  8. Android(安卓)签名之使用命令行给apk签名
  9. javascript 与 webview 交互
  10. Android限制EditText输入金额小于1E,并最