我尝试通过修改某些图片文件来稍微自定义另一个应用。所以客观的是简单地覆盖微小的jpg文件(根据需要一次一个)
例如,需要覆盖 /data/data/com.otherapp/files/somefile.jpg
p = Runtime.getRuntime().exec("su");
已经运行。
我还在编写代码之前添加了Runtime.getRuntime().exec("chmod 077 " +myFile.getAbsolutePath());
,如同类似问题所示
我被拒绝了。
java.io.FileNotFoundException: /data/data/com......jpg: open failed: EACCES (Permission denied)
我的写代码是:
//myDir is /data/data/com.......
File myFile = new File (myDir.getAbsolutePath(), fname);
try {
//myFile.createNewFile();//tried with and without this
FileOutputStream out = new FileOutputStream(myFile);
btbmp.compress(Bitmap.CompressFormat.JPEG, 60, out);
out.flush();
out.close();
} catch (Exception e) {
e.printStackTrace();
}
我该怎么做?
答案 0 :(得分:2)
好的,这是整天拍摄的,但我已经达到了预期的效果:
src_file = "somefile/on/sdcard.jpg"
dest_file = "/data/data/com.anotherapp/files/abcde.jpg"
使用上下文获取路径
try {
Process process = Runtime.getRuntime().exec("su");
DataOutputStream os = new DataOutputStream(process.getOutputStream());
os.writeBytes("rm "+dest_file + "\n"); //removes destination file -might not be required - haven't tested
os.flush();
os.writeBytes("cat "+src_file+" > "+dest_file + "\n");
os.flush();
os.writeBytes("exit\n");
os.flush();
// Waits for the command to finish.
process.waitFor();
}
catch (IOException e) {
e.printStackTrace();
}
catch (InterruptedException e) {
e.printStackTrace();
}
注意在某些情况下,我必须chmod根文件夹777才能使用它。我确定这不是一个好习惯,这样做意味着使用该文件夹的应用程序可能无法访问它。在我的情况下,直到我使用ES Explorer纠正它之前发生了什么