String cmd = "chmod 777 " + saveFile.getAbsolutePath();
try {
Runtime.getRuntime().exec(cmd);
} catch (IOException e) {
e.printStackTrace();
}
777可能不太完美.暂时只能这样了.
© 著作权归作者所有
String cmd = "chmod 777 " + saveFile.getAbsolutePath();
try {
Runtime.getRuntime().exec(cmd);
} catch (IOException e) {
e.printStackTrace();
}
777可能不太完美.暂时只能这样了.
文章评论(0)