Browse Source

自动更新时间

第二版
fyf 1 year ago
parent
commit
80d7f657c9
3 changed files with 20 additions and 0 deletions
  1. +2
    -0
      app/src/main/java/com/example/bpa/MainActivity.java
  2. +1
    -0
      app/src/main/java/com/example/bpa/app/ICSApp.java
  3. +17
    -0
      app/src/main/java/com/example/bpa/helper/NetworkUtils.java

+ 2
- 0
app/src/main/java/com/example/bpa/MainActivity.java View File

@@ -43,6 +43,7 @@ import com.example.bpa.helper.MQTT;
import com.example.bpa.helper.MessageLog;
import com.example.bpa.helper.ModbusTcpHelper;
import com.example.bpa.helper.ModbusTcpServer;
import com.example.bpa.helper.NetworkUtils;
import com.example.bpa.helper.Speech;
import com.example.bpa.helper.T;
import com.example.bpa.helper.ThreadManager;
@@ -175,6 +176,7 @@ public class MainActivity extends FragmentActivity implements View.OnClickListen
* 初始化业务
*/
private void initBusiness() {
NetworkUtils.SynchronizationTime();//同步时间
Main.getInstance().ToggleEnvironment();
//PLC数据监控
//PLC数据监控


+ 1
- 0
app/src/main/java/com/example/bpa/app/ICSApp.java View File

@@ -34,6 +34,7 @@ public class ICSApp extends Application {
public void onCreate() {
super.onCreate();
NetworkUtils.exec3("ip rule add from all lookup main pref 9999");
NetworkUtils.SynchronizationTime();//同步时间
ConfigName.getInstance().dishesCon = this;
ConfigName.getInstance().app = this;
}


+ 17
- 0
app/src/main/java/com/example/bpa/helper/NetworkUtils.java View File

@@ -172,7 +172,24 @@ public class NetworkUtils {
});
}

/**
* 同步时间
*/
public static void SynchronizationTime()
{
new Thread(new Runnable() {
@Override
public void run() {
try {
exec3("settings put global auto_time 0");
Thread.sleep(500);
exec3("settings put global auto_time 1");
} catch (InterruptedException e) {

}
}
}).start();
}
/**
* 发送
* @param cmds


Loading…
Cancel
Save