houzhongjian
2024-10-30 a28ca3f36d0ace05966a8c0fac1e4b5fe921f882
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package com.netsdk.demo.module;
 
import java.text.SimpleDateFormat;
 
import com.netsdk.lib.NetSDKLib.CtrlType;
import com.netsdk.lib.NetSDKLib.NET_TIME;
import com.netsdk.lib.ToolKits;
 
 
/**
 * \if ENGLISH_LANG
 * Device Control Interface
 * contains:reboot device、setup device time and query device time
 * \else
 * 设备控制接口实现
 * 包含: 重启、时间同步、获取时间功能
 * \endif
 */
public class DeviceControlModule {
    
    /**
     * \if ENGLISH_LANG
     * Reboot Device
     * \else
     * 重启设备
     * \endif
     */
    public static boolean reboot() {
        
        if (!LoginModule.netsdk.CLIENT_ControlDevice(LoginModule.m_hLoginHandle, CtrlType.CTRLTYPE_CTRL_REBOOT, null, 3000)) {
            System.err.println("CLIENT_ControlDevice Failed!" + ToolKits.getErrorCodePrint());
            return false;
        }
        return true;
    }
 
    /**
     * \if ENGLISH_LANG
     * Setup Device Time
     * \else
     * 时间同步
     * \endif
     */
    public static boolean setTime(String date) {
        NET_TIME deviceTime = new NET_TIME();
        if (date == null) {
            SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
            date = dateFormat.format(new java.util.Date());
        }
        
        String[] dateTime = date.split(" ");
        String[] arrDate = dateTime[0].split("-");
        String[] arrTime = dateTime[1].split(":");
        deviceTime.dwYear = Integer.parseInt(arrDate[0]);
        deviceTime.dwMonth = Integer.parseInt(arrDate[1]);
        deviceTime.dwDay = Integer.parseInt(arrDate[2]);
        deviceTime.dwHour = Integer.parseInt(arrTime[0]);
        deviceTime.dwMinute = Integer.parseInt(arrTime[1]);
        deviceTime.dwSecond = Integer.parseInt(arrTime[2]);
 
        if (!LoginModule.netsdk.CLIENT_SetupDeviceTime(LoginModule.m_hLoginHandle, deviceTime)) {
            System.err.println("CLIENT_SetupDeviceTime Failed!" + ToolKits.getErrorCodePrint());
            return false;
        }
        return true;
    }
    
    /**
       * \if ENGLISH_LANG
       * Get Device Current Time
       * \else
       * 获取设备当前时间
       * \endif
       */
    public static String getTime() {
        NET_TIME deviceTime = new NET_TIME();
        
        if (!LoginModule.netsdk.CLIENT_QueryDeviceTime(LoginModule.m_hLoginHandle, deviceTime, 3000)) {
            System.err.println("CLIENT_QueryDeviceTime Failed!" + ToolKits.getErrorCodePrint());
            return null;
        }
 
        String date = deviceTime.toStringTime();
        date = date.replace("/", "-");
        
        return date;
    }
}