|
|
|
package utils;
|
|
|
|
|
|
|
|
import com.ruoyi.common.utils.DateUtils;
|
|
|
|
import com.sun.jna.NativeLong;
|
|
|
|
import com.sun.jna.ptr.IntByReference;
|
|
|
|
import sdk.java.lib.netmanager.NetEnums;
|
|
|
|
import sdk.java.lib.netmanager.NetLib;
|
|
|
|
import sdk.java.lib.netmanager.NetStructs;
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
public class CameraUtil {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
|
|
|
// NetLib.instance.Net_Init(null, null);
|
|
|
|
|
|
|
|
run_device_cfg cfg = new run_device_cfg();
|
|
|
|
cfg.startCfg();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean deal(NativeLong loginID){
|
|
|
|
boolean res = NetLib.instance.Net_RebootDevice(loginID);
|
|
|
|
int error = NetLib.instance.Net_LastError();
|
|
|
|
System.out.println("reboot errorCode = "+ error);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void sleep(int nTime)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
Thread.sleep(nTime * 1000);
|
|
|
|
} catch (InterruptedException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 设置当前时间
|
|
|
|
* @param loginID
|
|
|
|
*/
|
|
|
|
public static void setNowTime(NativeLong loginID){
|
|
|
|
NetStructs.STU_TIME.ByReference stuTimeRef = new NetStructs.STU_TIME.ByReference();
|
|
|
|
boolean bGet = NetLib.instance.Net_GetDeviceTime(loginID, stuTimeRef, 6000);
|
|
|
|
|
|
|
|
System.out.printf("Get time = %b, time = %04d-%02d-%02d %02d:%02d:%02d\n",
|
|
|
|
bGet, stuTimeRef.nYear, stuTimeRef.nMonth, stuTimeRef.nDay,
|
|
|
|
stuTimeRef.nHour, stuTimeRef.nMinute, stuTimeRef.nSecond);
|
|
|
|
|
|
|
|
try {
|
|
|
|
Thread.sleep(3000);
|
|
|
|
} catch (InterruptedException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
|
|
|
|
String time = DateUtils.parseDateToStr("yyyy-MM-dd HH:mm:ss",new Date());
|
|
|
|
// 修改时间
|
|
|
|
stuTimeRef.nYear = Integer.parseInt(time.substring(0,4));
|
|
|
|
stuTimeRef.nMonth = Integer.parseInt(time.substring(5,7));
|
|
|
|
stuTimeRef.nDay = Integer.parseInt(time.substring(8,10));
|
|
|
|
stuTimeRef.nHour = Integer.parseInt(time.substring(11,13));
|
|
|
|
stuTimeRef.nMinute = Integer.parseInt(time.substring(14,16));
|
|
|
|
stuTimeRef.nSecond = Integer.parseInt(time.substring(17,19));
|
|
|
|
|
|
|
|
System.out.println("Set time, time"+
|
|
|
|
stuTimeRef.nYear+"-"+ stuTimeRef.nMonth+"-"+ stuTimeRef.nDay+" "+
|
|
|
|
stuTimeRef.nHour+":"+ stuTimeRef.nMinute+":"+stuTimeRef.nSecond);
|
|
|
|
|
|
|
|
NetLib.instance.Net_SetDeviceTime(loginID, stuTimeRef, 2000);
|
|
|
|
|
|
|
|
// 再获取时间
|
|
|
|
bGet = NetLib.instance.Net_GetDeviceTime(loginID, stuTimeRef, 2000);
|
|
|
|
System.out.println("Get time = %b, time =" +
|
|
|
|
stuTimeRef.nYear+"-"+ stuTimeRef.nMonth+"-"+ stuTimeRef.nDay+" "+
|
|
|
|
stuTimeRef.nHour+":"+ stuTimeRef.nMinute+":"+stuTimeRef.nSecond);
|
|
|
|
}
|
|
|
|
}
|