• 大小: 17.63MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-07-26
  • 语言: Java
  • 标签: web  

资源简介

指纹仪驱动安装包(版本5.1.x.x),所有中控指纹仪适用此驱动。安装后所有文件复制到系统目录。 ZKOnline SDK_chs.pdf ZKOnline参考手册 ASP.Net ASP.Net源码 JSP JSP源码 demo

资源截图

代码片段和文件信息

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.IO;

public partial class addfinger : System.Web.UI.Page
{
    protected string RegisterTemplate = ““;
protected string NumFinger = ““;
    protected string username = ““;//接收用户名
protected string[] NumId = new String[10];//第n根手指
protected string[] fingers=new String[10];//注册指纹模板
    protected string result = ““;//提示信息
    protected int isExit = 0;//
protected StreamReader SR;
    protected void Page_Load(object sender EventArgs e)
    {

if (Request.Form[“username“].Trim() != null)//判断页面请求用户名是否为空
{
username = Request.Form[“username“].Trim();
}
if (Request.Form[“hiddenObj“] != null)//判断页面请求指纹模板是否为空
{
RegisterTemplate = Request.Form[“hiddenObj“];
}
if (Request.Form[“finghidden“] != null) //判断页面请求手指id是否为空
{
NumFinger = Request.Form[“finghidden“];
}
NumId = NumFinger.Split(‘‘);//将获取的手指id分割成数组存入NumId
fingers = RegisterTemplate.Split(‘‘);//将获取的指纹模板分割成数组存入fingers
        SR = new StreamReader(Server.MapPath(“MyFinger.txt“));
string tmp = SR.ReadLine();
//tmp = SR.ReadLine();
for (int i = 0; i < fingers.Length;i++ )
{
while (tmp != null)
{

if (tmp.Substring(0 tmp.IndexOf(‘@‘)).Equals(username))//判断是否存在相同的用户名
{
if (NumId[i].Equals(tmp.Substring(tmp.IndexOf(‘#‘) + 1 1)))//在用户名相同的情况下判断用户登记的手指是否相同
{
isExit = 1;
}
}
tmp = SR.ReadLine();
}
}
        SR.Close();//关闭文件
        if (isExit == 1)
        {
            result = “该用户名的该指纹已经存在“;
        }
        else
        {
            StreamWriter SW;
            SW = File.AppendText(Server.MapPath(“MyFinger.txt“));
for (int i = 0; i < fingers.Length; i++)//将手指信息写入文件
{
SW.WriteLine(username + “@“ + fingers[i] + “#“ + NumId[i]);
}
            //SW.WriteLine(username + “@“ + RegisterTemplate);
            SW.Close();
            result = “指纹已成功保存到服务器!“;
        }

    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

    .......       562  2011-03-16 11:16  ZKOnline SDK 5.1.0.26_trail\ASP.Net\fingerCheck\addfinger.aspx

    .......      2514  2011-03-25 17:26  ZKOnline SDK 5.1.0.26_trail\ASP.Net\fingerCheck\addfinger.aspx.cs

    .......       516  2011-03-25 17:27  ZKOnline SDK 5.1.0.26_trail\ASP.Net\fingerCheck\CheckFinger.aspx

    .......      4843  2016-03-09 14:39  ZKOnline SDK 5.1.0.26_trail\ASP.Net\fingerCheck\CheckFinger.aspx.cs

    .......      2261  2011-03-16 11:13  ZKOnline SDK 5.1.0.26_trail\ASP.Net\fingerCheck\Default.aspx

    .......       461  2010-08-10 09:58  ZKOnline SDK 5.1.0.26_trail\ASP.Net\fingerCheck\Default.aspx.cs

    .......      4072  2011-05-04 15:27  ZKOnline SDK 5.1.0.26_trail\ASP.Net\fingerCheck\jquery.fancybox\jquery.fancybox-1.2.1.pack.js

    .......      6329  2010-08-11 18:55  ZKOnline SDK 5.1.0.26_trail\ASP.Net\fingerCheck\jquery.fancybox\jquery.fancybox.css

    .......         0  2011-03-28 17:47  ZKOnline SDK 5.1.0.26_trail\ASP.Net\fingerCheck\MyFinger.txt

    .......      1546  2011-03-25 15:56  ZKOnline SDK 5.1.0.26_trail\ASP.Net\fingerCheck\Web.Config

    .......       340  2011-03-28 15:23  ZKOnline SDK 5.1.0.26_trail\JSP\.classpath

    .......       318  2013-05-02 16:09  ZKOnline SDK 5.1.0.26_trail\JSP\.mymetadata

    .......      1233  2011-03-28 15:23  ZKOnline SDK 5.1.0.26_trail\JSP\.project

    .......       633  2013-05-06 20:12  ZKOnline SDK 5.1.0.26_trail\JSP\.settings\org.eclipse.jdt.core.prefs

    .......      6316  2013-05-07 14:09  ZKOnline SDK 5.1.0.26_trail\JSP\src\test\Test.java

    .......      3327  2011-03-28 15:23  ZKOnline SDK 5.1.0.26_trail\JSP\src\writeApp\DelimitedDataFile.java

    .......       992  2011-03-28 15:23  ZKOnline SDK 5.1.0.26_trail\JSP\src\writeApp\WriteAppend.java

    .......       973  2013-05-02 16:57  ZKOnline SDK 5.1.0.26_trail\JSP\src\zk\jni\JavaToBiokey.java

    .......      2023  2011-03-28 16:49  ZKOnline SDK 5.1.0.26_trail\JSP\WebRoot\checkFinger.jsp

    .......         0  2011-03-28 16:15  ZKOnline SDK 5.1.0.26_trail\JSP\WebRoot\fingerList.xml

    .......      2260  2011-03-28 15:23  ZKOnline SDK 5.1.0.26_trail\JSP\WebRoot\index.jsp

    .......      4222  2011-05-04 15:24  ZKOnline SDK 5.1.0.26_trail\JSP\WebRoot\jquery.fancybox\jquery.fancybox-1.2.1.pack.js

    .......      6344  2011-03-28 15:23  ZKOnline SDK 5.1.0.26_trail\JSP\WebRoot\jquery.fancybox\jquery.fancybox.css

    .......        39  2011-03-28 15:23  ZKOnline SDK 5.1.0.26_trail\JSP\WebRoot\meta-INF\MANIFEST.MF

    .......      3175  2011-03-28 16:52  ZKOnline SDK 5.1.0.26_trail\JSP\WebRoot\regFinger.jsp

    .......      6431  2013-05-07 14:09  ZKOnline SDK 5.1.0.26_trail\JSP\WebRoot\WEB-INF\classes\test\Test.class

    .......      2467  2013-05-07 10:30  ZKOnline SDK 5.1.0.26_trail\JSP\WebRoot\WEB-INF\classes\writeApp\DelimitedDataFile.class

    .......      1508  2013-05-07 10:30  ZKOnline SDK 5.1.0.26_trail\JSP\WebRoot\WEB-INF\classes\writeApp\WriteAppend.class

    .......       533  2013-05-07 10:30  ZKOnline SDK 5.1.0.26_trail\JSP\WebRoot\WEB-INF\classes\zk\jni\JavaToBiokey.class

    .......       375  2011-03-28 15:23  ZKOnline SDK 5.1.0.26_trail\JSP\WebRoot\WEB-INF\web.xml

............此处省略47个文件信息

评论

共有 条评论