Android 修改系统时间代码

                // 修改系统时间
                try {
                    Process process = Runtime.getRuntime().exec("su");
                    // 设置的时间【时间格式 yyyyMMdd.HHmmss】
                    String formatDate = DateTimeUtils.toModifySystemDateTimeFormat(date);
                    DataOutputStream os = new DataOutputStream(process.getOutputStream());
                    os.writeBytes("setprop persist.sys.timezone GMT\n");
                    os.writeBytes("/system/bin/date -s "+formatDate+"\n");
                    os.writeBytes("clock -w\n");
                    os.writeBytes("exit\n");
                    os.flush();
                } catch (Exception e) {
                    Tracker.e(e);
                }

你可能感兴趣的:(Android)