You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
3.2 KiB

3 years ago
package utils;
import com.ruoyi.common.utils.DateUtils;
import com.sun.jna.NativeLong;
import com.sun.jna.ptr.IntByReference;
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);
String strIp="36.133.93.214";
int nPort= 27778;
String strUsername="admin";
String strPassword="admin123";
IntByReference error = null;
NativeLong loginID = NetLib.instance.Net_LoginDevice(strIp, nPort, strUsername, strPassword, null, error);
System.out.println(loginID);
//重启设备
// boolean bResult = NetLib.instance.Net_RebootDevice(loginID);
// System.out.println("Net_RebootDevice = " + bResult);
// boolean r2 = NetLib.instance.Net_LogoutDevice(loginID);
// System.out.println("r2 = " + r2);
// NetLib.instance.Net_Exit();
}
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);
}
}