标签:android 修改时间
最近有一项目要求修改系统时间
try {
Process process = Runtime.getRuntime().exec("su");
DataOutputStream os = new DataOutputStream(process.getOutputStream());
os.writeBytes("date -s 20150319.024012; \n");
os.writeBytes(lastTime);
} catch (Exception e) {
e.printStackTrace();
}
标签:android 修改时间
原文地址:http://laocai.blog.51cto.com/10020033/1628130