将文件写入系统/从R.raw.file

时间:2015-01-21 13:37:20

标签: android eclipse

嗨,我只是初学者和制作应用程序为三星rom提供自定义mod

如何将文件从原始文件写入系统/媒体

就像我在我的R.raw.file中有文件一样,我想将这个文件写入系统/媒体中的某个位置,并且我已经授予root

我试过

public void button1(View v){
    try {
        DataOutputStream v1 = new DataOutputStream(Runtime.getRuntime().exec("su").getOutputStream
                ());
        v1.writeBytes("cat R.raw.file > /system/media/bootsamsung.qmg\n");
        v1.flush();
        v1.writeBytes("exit\n");

    }
    catch(IOException v1) {
    }
}
}

但这不起作用" R.raw.file"你能帮我写一下吗?

0 个答案:

没有答案