我有这个生物识别技术,但是它给了我完全错误的输出-不同的用户名和2132年的验证日期。

是什么原因导致此类错误信息?
我在互联网上找不到任何类似的问题。有没有其他人遇到过像我一样的问题?

C#代码:

            if (axCZKEM1.ReadGeneralLogData(GetMachineNumber()))
        {
            while (axCZKEM1.SSR_GetGeneralLogData(GetMachineNumber(), out sdwEnrollNumber, out idwVerifyMode,
                        out idwInOutMode, out idwYear, out idwMonth, out idwDay, out idwHour, out idwMinute, out idwSecond, ref idwWorkcode))//get records from the memory
            {
                DataRow dr = dt_log.NewRow();
                dr["User ID"] = sdwEnrollNumber;
                dr["Verify Date"] = idwYear + "-" + idwMonth + "-" + idwDay + " " + idwHour + ":" + idwMinute + ":" + idwSecond;
                dr["Verify Type"] = idwVerifyMode;
                dr["Verify State"] = idwInOutMode;
                dr["WorkCode"] = idwWorkcode;
                dt_log.Rows.Add(dr);
            }
            ret = 1;
        }
        else
        {
            axCZKEM1.GetLastError(ref idwErrorCode);
            ret = idwErrorCode;

            if (idwErrorCode != 0)
            {
                lblOutputInfo.Items.Add("*Read attlog failed,ErrorCode: " + idwErrorCode.ToString());
            }
            else
            {
                lblOutputInfo.Items.Add("No data from terminal returns!");
            }
        }

VB.NET代码:
If axCZKEM1.ReadGeneralLogData(iMachineNumber) Then

            While axCZKEM1.SSR_GetGeneralLogData(iMachineNumber, idwEnrollNumber, idwVerifyMode, idwInOutMode, idwYear, idwMonth, idwDay, idwHour, idwMinute, idwSecond, idwWorkCode)

                Dim newitem As New ListViewItem()

                    newitem.Text = idwEnrollNumber.ToString()
                    newitem.SubItems.Add(idwYear.ToString() + "-" + idwMonth.ToString() + "-" + idwDay.ToString() + " " + idwHour.ToString() + ":" + idwMinute.ToString() + ":" + idwSecond.ToString())
                    newitem.SubItems.Add(idwVerifyMode.ToString)
                    newitem.SubItems.Add(idwInOutMode.ToString)
                    newitem.SubItems.Add(idwWorkCode.ToString)
                    lvLogs.Items.Add(newitem)

            End While
  End If



c# - 生物识别技术指纹正在提供其他人的信息-LMLPHP

最佳答案

那不是应该构造DateTime对象的方式。尝试使用this constructor构造DateTime对象,然后以所需的格式调用ToString。如果失败,则可以排除以下情况:

newitem.SubItems.Add(New DateTime(idwYear, idwMonth, idwDay, idwHour, idwMinute, idwSecond).ToString("yyyy-MM-dd hh:mm:ss"))

我还建议在构造DateTime对象时设置一个断点,并检查idwYear/Month/etc的值。确保引用的变量具有期望值。

我仔细检查了documentation for this method,看来签名是正确的。我还建议检查您的变量是否声明为Integer变量(为了确定)。

关于c# - 生物识别技术指纹正在提供其他人的信息,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/59621847/

10-12 04:23