fuliqi
2024-08-29 4163c93761115c7524ef74a557a1f5e01eafb429
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
package com.ycl.api.YS.config.network;
 
import com.ycl.api.YS.NetDemo;
 
import javax.swing.*;
 
/**
 *
 * @introduction Telnet
 * @description Support NVR
 *
 */
public class Telnet {
 
    /**
     *
     * @introduction Open Telnet
     * @description Calling the interface of NETDEV_EnableTelnet
     *
     */
    public static void openTelnet() {
        if(null == NetDemo.lpUserID){
            JOptionPane.showMessageDialog(null, "Please Login device first. error code"+NetDemo.netdevsdk.NETDEV_GetLastError());
            return;
        }
 
        boolean bRet = NetDemo.netdevsdk.NETDEV_EnableTelnet(NetDemo.lpUserID, 1);
        if(bRet != true)
        {
            JOptionPane.showMessageDialog(null, "Open failed");
            System.out.printf("NETDEV_EnableTelnet failed:%d\n", NetDemo.netdevsdk.NETDEV_GetLastError());
            return;
        }else {
            JOptionPane.showMessageDialog(null, "Open success");
        }
    }
 
    /**
     *
     * @introduction Close telnet
     * @description Calling the interface of NETDEV_EnableTelnet
     *
     */
    public static void closeTelnet() {
        if(null == NetDemo.lpUserID){
            JOptionPane.showMessageDialog(null, "Please Login device first. error code"+NetDemo.netdevsdk.NETDEV_GetLastError());
            return;
        }
 
        boolean bRet = NetDemo.netdevsdk.NETDEV_EnableTelnet(NetDemo.lpUserID, 0);
        if(bRet != true)
        {
            JOptionPane.showMessageDialog(null, "Close failed,error code"+NetDemo.netdevsdk.NETDEV_GetLastError());
            System.out.printf("NETDEV_EnableTelnet failed:%d\n", NetDemo.netdevsdk.NETDEV_GetLastError());
            return;
        }else {
            JOptionPane.showMessageDialog(null, "Close success");
        }
    }
}