修改系统时间

最近有一项目要求修改系统时间

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,修改时间)