Android Studio安卓读写NFC Ntag标签源码

本示例使用的发卡器: https://item.taobao.com/item.htm?spm=a1z10.5-c-s.w4002-21818769070.11.3513789erHXVGx&id=615391857885

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:app="http://schemas.android.com/apk/res-auto"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:padding="3dp"tools:context=".NtagActivity"><androidx.appcompat.widget.Toolbarandroid:id="@+id/toolbar"android:layout_width="match_parent"android:layout_height="30dp"android:background="?attr/colorPrimary"app:navigationIcon="@drawable/baseline_arrow_back_ios_24"app:titleTextColor="@color/white"tools:ignore="MissingConstraints"tools:layout_editor_absoluteY="0dp"><TextViewandroid:id="@+id/TextViewlabelDispleft"android:layout_width="wrap_content"android:layout_height="match_parent"android:text="返回"android:textColor="@color/white"android:textSize="16sp"android:gravity="center"android:onClick="retmain" /><TextViewandroid:id="@+id/TextViewlabelDisp"android:layout_width="match_parent"android:layout_height="match_parent"android:text="ntag213、215、216卡、复旦11rf32测试页"android:textColor="@color/white"android:gravity="center_horizontal|bottom"app:layout_constraintBottom_toBottomOf="parent"app:layout_constraintEnd_toEndOf="parent"app:layout_constraintStart_toStartOf="@+id/TextViewlabelDispleft"app:layout_constraintTop_toTopOf="parent" /></androidx.appcompat.widget.Toolbar><TextViewandroid:id="@+id/sample_text"android:layout_width="fill_parent"android:layout_height="120dp"android:padding="3dp"android:text="操作结果"android:background="@drawable/shape4border"app:layout_constraintLeft_toLeftOf="parent"app:layout_constraintBottom_toBottomOf="parent"/><ScrollViewandroid:id="@+id/scrollViewIC"android:layout_width="fill_parent"android:layout_height="0dp"android:layout_marginBottom="5dp"app:layout_constraintLeft_toLeftOf="parent"app:layout_constraintTop_toBottomOf="@+id/toolbar"app:layout_constraintBottom_toTopOf="@+id/sample_text"android:scrollbars="horizontal"><androidx.constraintlayout.widget.ConstraintLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:padding="3dp"><Buttonandroid:id="@+id/butt_requestntag"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginTop="5dp"android:text="搜寻Ntag卡获取卡号"android:textSize="12sp"android:onClick="RequestNtag"app:layout_constraintLeft_toLeftOf="parent"app:layout_constraintTop_toTopOf="parent"  /><TextViewandroid:id="@+id/textViewtitleuid"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginLeft="10dp"android:text="UID:"app:layout_constraintBottom_toBottomOf="@+id/butt_requestntag"app:layout_constraintLeft_toRightOf="@+id/butt_requestntag"app:layout_constraintTop_toTopOf="@+id/butt_requestntag" /><TextViewandroid:id="@+id/textViewuid"android:layout_width="130dp"android:layout_height="wrap_content"android:layout_marginLeft="5dp"android:background="@drawable/shape4border"android:gravity="center"android:textColor="#FF0000"android:text=""app:layout_constraintBottom_toBottomOf="@+id/textViewtitleuid"app:layout_constraintLeft_toRightOf="@+id/textViewtitleuid"app:layout_constraintTop_toTopOf="@+id/textViewtitleuid" /><Buttonandroid:id="@+id/butt_getversiontype"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginTop="5dp"android:onClick="getversiontype"android:text="卡片版本及型号"android:textSize="12sp"app:layout_constraintLeft_toLeftOf="parent"app:layout_constraintTop_toBottomOf="@+id/butt_requestntag" /><Buttonandroid:id="@+id/butt_getsign"android:layout_width="wrap_content"android:layout_height="wrap_content"android:onClick="getcardsign"android:text="卡片签名信息"android:textSize="12sp"app:layout_constraintBottom_toBottomOf="@+id/butt_getversiontype"app:layout_constraintLeft_toRightOf="@+id/butt_getversiontype"app:layout_constraintTop_toTopOf="@+id/butt_getversiontype" /><Buttonandroid:id="@+id/butt_getcountervalue"android:layout_width="wrap_content"android:layout_height="wrap_content"android:onClick="getcountervalue"android:text="卡片单向计数器值"android:textSize="11sp"app:layout_constraintBottom_toBottomOf="@+id/butt_getsign"app:layout_constraintLeft_toRightOf="@+id/butt_getsign"app:layout_constraintTop_toTopOf="@+id/butt_getsign" /><Buttonandroid:id="@+id/butt_getStaticlock"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginTop="5dp"android:onClick="getStaticlock"android:text="读取卡片静态锁值"android:textSize="12sp"app:layout_constraintLeft_toLeftOf="parent"app:layout_constraintTop_toBottomOf="@+id/butt_getversiontype" /><TextViewandroid:id="@+id/textViewtitlelock"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginLeft="10dp"android:text="静态锁标识:"app:layout_constraintBottom_toBottomOf="@+id/butt_getStaticlock"app:layout_constraintLeft_toRightOf="@+id/butt_getStaticlock"app:layout_constraintTop_toTopOf="@+id/butt_getStaticlock" /><EditTextandroid:id="@+id/edit_Staticlock"android:layout_width="120dp"android:layout_height="wrap_content"android:layout_marginLeft="2dp"android:background="@drawable/shape4border"android:digits="01"android:gravity="center"android:inputType="textCapCharacters"android:maxLength="16"android:text="0000000000000000"android:textColor="#0000FF"android:textSize="12sp"app:layout_constraintBottom_toBottomOf="@+id/textViewtitlelock"app:layout_constraintLeft_toRightOf="@+id/textViewtitlelock"app:layout_constraintTop_toTopOf="@+id/textViewtitlelock" /><Buttonandroid:id="@+id/butt_Staticlock"android:layout_width="wrap_content"android:layout_height="wrap_content"android:onClick="Staticlock"android:text="将卡片加上静态锁"android:textSize="12sp"app:layout_constraintLeft_toLeftOf="parent"app:layout_constraintTop_toBottomOf="@+id/butt_getStaticlock" /><TextViewandroid:id="@+id/textViewtitlenote"android:layout_width="250dp"android:layout_height="wrap_content"android:layout_marginLeft="10dp"android:text="警告:16位静态锁标识代表0-15块的锁定状态,0表示块未锁定、1表示块锁定,块如果锁定将不能再次修改!"android:textColor="#FF0000"app:layout_constraintBottom_toBottomOf="@+id/butt_Staticlock"app:layout_constraintLeft_toRightOf="@+id/butt_Staticlock"app:layout_constraintTop_toTopOf="@+id/butt_Staticlock" /><CheckBoxandroid:id="@+id/check_seleauthkeyen"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginTop="20dp"android:text="选择先认证密钥再继续以下操作,8位16进制认证密钥:"android:textColor="#0000FF"android:textSize="11sp"app:layout_constraintLeft_toLeftOf="parent"app:layout_constraintTop_toBottomOf="@+id/butt_Staticlock" /><EditTextandroid:id="@+id/edit_authkey"android:layout_width="70dp"android:layout_height="wrap_content"android:layout_marginLeft="4dp"android:background="@drawable/shape4border"android:digits="0123456789ABCDEFabcdef"android:textColor="#FF0000"android:gravity="center"android:inputType="textCapCharacters"android:maxLength="8"android:maxLines="1"android:text="12345678"android:textSize="12sp"app:layout_constraintBottom_toBottomOf="@+id/check_seleauthkeyen"app:layout_constraintLeft_toRightOf="@+id/check_seleauthkeyen"app:layout_constraintTop_toTopOf="@+id/check_seleauthkeyen" /><Buttonandroid:id="@+id/butt_initntag"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginTop="10dp"android:onClick="InitNtagCard"android:text="设置Ntag卡密钥机制"android:textSize="12sp"app:layout_constraintLeft_toLeftOf="parent"app:layout_constraintTop_toBottomOf="@+id/check_seleauthkeyen" /><Spinnerandroid:id="@+id/spin_seleopencloskey"android:layout_width="220dp"android:layout_height="wrap_content"android:layout_marginLeft="8dp"android:entries="@array/NtagKeyEn"android:theme="@style/my_spinner_style"app:layout_constraintLeft_toRightOf="@+id/butt_initntag"app:layout_constraintTop_toTopOf="@+id/butt_initntag" /><Spinnerandroid:id="@+id/spin_selereadauth"android:layout_width="220dp"android:layout_height="wrap_content"android:layout_marginLeft="8dp"android:entries="@array/NtagReadAuthEn"android:theme="@style/my_spinner_style"app:layout_constraintBottom_toBottomOf="@+id/butt_initntag"app:layout_constraintLeft_toRightOf="@+id/butt_initntag" /><TextViewandroid:id="@+id/textViewtitlefrom"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginTop="3dp"android:textSize="12sp"android:text="选择从第:"app:layout_constraintLeft_toLeftOf="parent"app:layout_constraintTop_toBottomOf="@+id/butt_initntag" /><EditTextandroid:id="@+id/edit_initbeginblock"android:layout_width="50dp"android:layout_height="wrap_content"android:layout_marginLeft="4dp"android:background="@drawable/shape4border"android:digits="0123456789"android:gravity="center"android:textColor="#FF0000"android:inputType="textCapCharacters"android:maxLength="4"android:maxLines="1"android:text="20"android:textSize="12sp"app:layout_constraintBottom_toBottomOf="@+id/textViewtitlefrom"app:layout_constraintLeft_toRightOf="@+id/textViewtitlefrom"app:layout_constraintTop_toTopOf="@+id/textViewtitlefrom" /><TextViewandroid:id="@+id/textViewtitle0"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginLeft="2dp"android:layout_marginTop="3dp"android:text="块开始有密钥保护功能,卡片新密钥:"android:textSize="12sp"app:layout_constraintBottom_toBottomOf="@+id/edit_initbeginblock"app:layout_constraintLeft_toRightOf="@+id/edit_initbeginblock"app:layout_constraintTop_toTopOf="@+id/edit_initbeginblock" /><EditTextandroid:id="@+id/edit_newkey"android:layout_width="70dp"android:layout_height="wrap_content"android:layout_marginLeft="4dp"android:background="@drawable/shape4border"android:digits="0123456789ABCDEFabcdef"android:textColor="#FF0000"android:gravity="center"android:inputType="textCapCharacters"android:maxLength="8"android:maxLines="1"android:text="12345678"android:textSize="12sp"app:layout_constraintBottom_toBottomOf="@+id/textViewtitle0"app:layout_constraintLeft_toRightOf="@+id/textViewtitle0"app:layout_constraintTop_toTopOf="@+id/textViewtitle0" /><TextViewandroid:id="@+id/textViewpack"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginTop="3dp"android:textSize="12sp"android:text="PACK密钥确认码:"app:layout_constraintLeft_toLeftOf="parent"app:layout_constraintTop_toBottomOf="@+id/textViewtitlefrom" /><EditTextandroid:id="@+id/edit_packkey"android:layout_width="40dp"android:layout_height="wrap_content"android:layout_marginLeft="4dp"android:background="@drawable/shape4border"android:digits="0123456789ABCDEFabcdef"android:gravity="center"android:textColor="#FF0000"android:inputType="textCapCharacters"android:maxLength="4"android:maxLines="1"android:text="1616"android:textSize="12sp"app:layout_constraintBottom_toBottomOf="@+id/textViewpack"app:layout_constraintLeft_toRightOf="@+id/textViewpack"app:layout_constraintTop_toTopOf="@+id/textViewpack" /><TextViewandroid:id="@+id/textViewtitle1"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginLeft="2dp"android:layout_marginTop="3dp"android:text=",允许密钥认证失败次数(0不限制):"android:textSize="12sp"app:layout_constraintBottom_toBottomOf="@+id/edit_packkey"app:layout_constraintLeft_toRightOf="@+id/edit_packkey"app:layout_constraintTop_toTopOf="@+id/edit_packkey" /><EditTextandroid:id="@+id/edit_limitauthfailed"android:layout_width="40dp"android:layout_height="wrap_content"android:layout_marginLeft="4dp"android:background="@drawable/shape4border"android:digits="0123456789"android:gravity="center"android:inputType="textCapCharacters"android:maxLength="4"android:maxLines="1"android:text="0"android:textColor="#FF0000"android:textSize="12sp"app:layout_constraintBottom_toBottomOf="@+id/textViewtitle1"app:layout_constraintLeft_toRightOf="@+id/textViewtitle1"app:layout_constraintTop_toTopOf="@+id/textViewtitle1" /><Buttonandroid:id="@+id/butt_readntag"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginTop="20dp"android:text="轻松从Ntag卡读数据"android:textSize="12sp"android:onClick="ReadNtagCard"app:layout_constraintLeft_toLeftOf="parent"app:layout_constraintTop_toBottomOf="@+id/textViewpack" /><Buttonandroid:id="@+id/butt_writentag"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="轻松写数据到Ntag卡"android:textSize="12sp"android:onClick="WriteNtagCard"app:layout_constraintBottom_toBottomOf="@+id/butt_readntag"app:layout_constraintLeft_toRightOf="@+id/butt_readntag"app:layout_constraintTop_toTopOf="@+id/butt_readntag" /><TextViewandroid:id="@+id/textViewtitle2"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginTop="3dp"android:text="本次读写操作起始块:"android:textSize="12sp"app:layout_constraintLeft_toLeftOf="parent"app:layout_constraintTop_toBottomOf="@+id/butt_readntag" /><EditTextandroid:id="@+id/edit_RWbeginblock"android:layout_width="48dp"android:layout_height="wrap_content"android:layout_marginLeft="4dp"android:background="@drawable/shape4border"android:digits="0123456789"android:gravity="center"android:inputType="textCapCharacters"android:maxLength="4"android:maxLines="1"android:text="4"android:textColor="#FF0000"android:textSize="12sp"app:layout_constraintBottom_toBottomOf="@+id/textViewtitle2"app:layout_constraintLeft_toRightOf="@+id/textViewtitle2"app:layout_constraintTop_toTopOf="@+id/textViewtitle2" /><TextViewandroid:id="@+id/textViewtitle3"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginLeft="40dp"android:layout_marginTop="3dp"android:text="本次读写块数:"android:textSize="12sp"app:layout_constraintBottom_toBottomOf="@+id/edit_RWbeginblock"app:layout_constraintLeft_toRightOf="@+id/edit_RWbeginblock"app:layout_constraintTop_toTopOf="@+id/edit_RWbeginblock" /><EditTextandroid:id="@+id/edit_RWblocks"android:layout_width="48dp"android:layout_height="wrap_content"android:layout_marginLeft="4dp"android:background="@drawable/shape4border"android:digits="0123456789"android:gravity="center"android:inputType="textCapCharacters"android:maxLength="4"android:maxLines="1"android:text="10"android:textColor="#FF0000"android:textSize="12sp"app:layout_constraintBottom_toBottomOf="@+id/textViewtitle3"app:layout_constraintLeft_toRightOf="@+id/textViewtitle3"app:layout_constraintTop_toTopOf="@+id/textViewtitle3" /><TextViewandroid:id="@+id/textViewtitle4"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginTop="3dp"android:text="读写标签内数据:"android:textSize="12sp"app:layout_constraintLeft_toLeftOf="parent"app:layout_constraintTop_toBottomOf="@+id/textViewtitle2" /><EditTextandroid:id="@+id/edit_rwdata"android:layout_width="match_parent"android:layout_height="130dp"android:background="@drawable/shape4border"android:digits="0123456789ABCDEFabcdef "android:inputType="textCapCharacters"android:maxLines="8"android:gravity="left"android:text="00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00"android:textSize="12sp"app:layout_constraintLeft_toLeftOf="parent"app:layout_constraintTop_toBottomOf="@+id/textViewtitle4" /></androidx.constraintlayout.widget.ConstraintLayout></ScrollView></androidx.constraintlayout.widget.ConstraintLayout>
package com.usbreadertest;import androidx.appcompat.app.AppCompatActivity;import android.os.Bundle;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.EditText;
import android.widget.Spinner;
import android.widget.TextView;import com.reader.ourmifare;public class NtagActivity extends AppCompatActivity {private TextView tv;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_ntag);androidx.appcompat.widget.Toolbar toolbar=findViewById(R.id.toolbar);setSupportActionBar(toolbar);tv = findViewById(R.id.sample_text);tv.setText("操作结果");Spinner spls = findViewById(R.id.spin_seleopencloskey);spls.setSelection(1);}@Overridepublic void onBackPressed(){super.onBackPressed();finish();}@Overridepublic boolean onOptionsItemSelected(MenuItem item) {if(item.getItemId()==android.R.id.home){finish();return true;}return super.onOptionsItemSelected(item);}public void retmain(View view){finish();}public void RequestNtag(View view){byte status;                          //存放返回值byte[] mypiccserial = new byte[7];    //7字节卡号tv.setText("");TextView ctruid=findViewById(R.id.textViewuid);ctruid.setText("");status = ourmifare.piccrequestul(mypiccserial);//& 0xff用于转为无符号行数据if (status == 0) {ourmifare.pcdbeep(38);String uidstr = "";for (int i = 0; i < 7; i++) {String bytestr = "00" + Integer.toHexString(mypiccserial[i] & 0xff);uidstr = uidstr + bytestr.substring(bytestr.length() - 2, bytestr.length()) ;}ctruid.setText(uidstr);tv.setText("获取7字节卡序号:" + uidstr);} else {PrintErrInf(status);   //返回代码提示}}public void getversiontype(View view){byte status;                          //存放返回值byte[] mypiccserial = new byte[7];    //7字节卡号byte[] mypiccversiondata=new byte[8];tv.setText("");TextView ctruid=findViewById(R.id.textViewuid);ctruid.setText("");status = ourmifare.piccrequestul(mypiccserial);if (status == 0) {String uidstr = "";for (int i = 0; i < 7; i++) {String bytestr = "00" + Integer.toHexString(mypiccserial[i] & 0xff);uidstr = uidstr + bytestr.substring(bytestr.length() - 2, bytestr.length()) ;}ctruid.setText(uidstr);status = ourmifare.piccgetversionntag(mypiccversiondata);if (status == 0) {ourmifare.pcdbeep(38);String verdstr = "";for (int i = 0; i < 8; i++) {String bytestr = "00" + Integer.toHexString(mypiccversiondata[i] & 0xff);verdstr = verdstr + bytestr.substring(bytestr.length() - 2, bytestr.length()) + " ";}tv.setText("读取卡片版本型号成功!"+"\n卡片序号:" + uidstr+"\n"+"版本型号:"+verdstr);}else {PrintErrInf(status);   //返回代码提示}} else {PrintErrInf(status);   //返回代码提示}}public void getcardsign(View view){byte status;                          //存放返回值byte[] mypiccserial = new byte[7];    //7字节卡号byte[] piccsigdata=new byte[32];tv.setText("");TextView ctruid=findViewById(R.id.textViewuid);ctruid.setText("");status = ourmifare.piccrequestul(mypiccserial);if (status == 0) {String uidstr = "";for (int i = 0; i < 7; i++) {String bytestr = "00" + Integer.toHexString(mypiccserial[i] & 0xff);uidstr = uidstr + bytestr.substring(bytestr.length() - 2, bytestr.length()) ;}ctruid.setText(uidstr);status = ourmifare.piccgetversionntag(piccsigdata);if (status == 0) {ourmifare.pcdbeep(38);String verdstr = "";for (int i = 0; i < 32; i++) {String bytestr = "00" + Integer.toHexString(piccsigdata[i] & 0xff);verdstr = verdstr + bytestr.substring(bytestr.length() - 2, bytestr.length()) + " ";}tv.setText("读取卡片签名信息成功!"+"\n卡片序号:" + uidstr+"\n"+"签名信息:"+verdstr);}else {PrintErrInf(status);   //返回代码提示}} else {PrintErrInf(status);   //返回代码提示}}public void getcountervalue(View view){byte status;                          //存放返回值byte[] mypiccserial = new byte[7];    //7字节卡号byte[] mypicccntdata=new byte[3];tv.setText("");TextView ctruid=findViewById(R.id.textViewuid);ctruid.setText("");status = ourmifare.piccrequestul(mypiccserial);if (status == 0) {String uidstr = "";for (int i = 0; i < 7; i++) {String bytestr = "00" + Integer.toHexString(mypiccserial[i] & 0xff);uidstr = uidstr + bytestr.substring(bytestr.length() - 2, bytestr.length()) ;}ctruid.setText(uidstr);status = ourmifare.piccreadcntntag(mypicccntdata);if (status == 0) {ourmifare.pcdbeep(38);String verdstr = "";for (int i = 0; i < 3; i++) {String bytestr = "00" + Integer.toHexString(mypicccntdata[i] & 0xff);verdstr = verdstr + bytestr.substring(bytestr.length() - 2, bytestr.length()) + " ";}tv.setText("读取卡片单向计数器值成功!"+"\n卡片序号:" + uidstr+"\n"+"计数器值:"+verdstr);}else {tv.setText("读取卡片单向计数器值失败!错误代码:"+Integer.toString(status)+"\n卡片序号:" + uidstr+"\n"+"可能是计数器功能尚未启用或卡本身不支持计数功能!");}} else {PrintErrInf(status);   //返回代码提示}}public void getStaticlock(View view){byte status;                          //存放返回值byte[] mypiccserial = new byte[7];    //7字节卡号byte[] mypiccdata=new byte[16];tv.setText("");TextView ctruid=findViewById(R.id.textViewuid);ctruid.setText("");status = ourmifare.piccrequestul(mypiccserial);if (status == 0) {String uidstr = "";for (int i = 0; i < 7; i++) {String bytestr = "00" + Integer.toHexString(mypiccserial[i] & 0xff);uidstr = uidstr + bytestr.substring(bytestr.length() - 2, bytestr.length());}ctruid.setText(uidstr);status = ourmifare.piccreadul((byte) 0,mypiccdata);if (status == 0) {ourmifare.pcdbeep(38);String verdstr = "";for (int i = 10; i < 12; i++) {String bytestr = "00000000" + Integer.toBinaryString(mypiccdata[i] & 0xff);verdstr = verdstr + bytestr.substring(bytestr.length() - 8, bytestr.length()) ;}EditText ctrstationlock=findViewById(R.id.edit_Staticlock);ctrstationlock.setText(verdstr);String tagtypestr="";switch(mypiccdata[14]){case 0x12:tagtypestr="Ntag213,144 Bytes";break;case 0x3e:tagtypestr="Ntag215,504 Bytes";break;case 0x6D:tagtypestr="Ntag216,888 Bytes";break;default:tagtypestr="OtherNtag";break;}tv.setText("读取卡片静态锁标识成功!"+"\n卡片序号:" + uidstr+"\n芯片类型:"+tagtypestr+"\n静态锁标识:"+verdstr);}else {PrintErrInf(status);   //返回代码提示}} else {PrintErrInf(status);   //返回代码提示}}public void Staticlock(View view){byte status;                          //存放返回值byte[] mypiccserial = new byte[7];    //7字节卡号byte[] mypiccdata=new byte[4];tv.setText("");TextView ctruid=findViewById(R.id.textViewuid);ctruid.setText("");EditText ctrstaticlock=findViewById(R.id.edit_Staticlock);String staticlockstr=ctrstaticlock.getText().toString().trim();if (staticlockstr.length()!=16){tv.setText("静态锁标识输入错误,请输入16位2进制静态锁标识值!");return;}status = ourmifare.piccrequestul(mypiccserial);if (status == 0) {String uidstr = "";for (int i = 0; i < 7; i++) {String bytestr = "00" + Integer.toHexString(mypiccserial[i] & 0xff);uidstr = uidstr + bytestr.substring(bytestr.length() - 2, bytestr.length());}ctruid.setText(uidstr);mypiccdata[0]=0;mypiccdata[1]=0;mypiccdata[2]=(byte)Integer.parseInt(staticlockstr.substring(0,8),2);mypiccdata[3]=(byte)Integer.parseInt(staticlockstr.substring(staticlockstr.length() - 8, staticlockstr.length()),2);status = ourmifare.picclockntag((byte) 0,mypiccdata);if (status == 0) {ourmifare.pcdbeep(38);tv.setText("卡片加入静态锁成功!"+"\n卡片序号:" + uidstr+"\n");}else {PrintErrInf(status);   //返回代码提示}} else {PrintErrInf(status);   //返回代码提示}}public void InitNtagCard(View view){byte status;                          //存放返回值byte[] mypicckey = new byte[4];      //4个字节的卡旧密码byte[] newPickey = new byte[44];     //4个字节的新密码byte[] mypiccserial = new byte[7];   //7字节卡号byte ReadNeedKey = 0;                //取值0读卡不需要认证密码,非0读卡也要认证密码byte myctrlword ;                    //取值0不需要认证密码,16要认证卡密码  对卡操作byte KeyErrNum=0;                    //对卡操作允许密码错误次数(0为不限次)byte[] mypiccdata=new byte[16];      //本次对卡的配置信息tv.setText("");TextView ctruid=findViewById(R.id.textViewuid);ctruid.setText("");CheckBox ctrauthen=findViewById(R.id.check_seleauthkeyen);if (ctrauthen.isChecked()){myctrlword=16;EditText ctrauthkey=findViewById(R.id.edit_authkey);String authkeystr=ctrauthkey.getText().toString().trim();if (authkeystr.length() != 8){tv.setText("认证密钥是8位16进制数据,请输入正确的认证密钥!");return;}else {for (int i = 0; i < 4; i++) {mypicckey[i] = (byte) Integer.parseInt(authkeystr.substring(i * 2, i * 2 + 2), 16);//只有用Integer.parseInt才能杜绝大于128时的错误}}}else{myctrlword=0;}EditText ctrbeginblock=findViewById(R.id.edit_initbeginblock);byte beginblock=(byte) Integer.parseInt(ctrbeginblock.getText().toString().trim());EditText ctrliminub=findViewById(R.id.edit_limitauthfailed);KeyErrNum=(byte) Integer.parseInt(ctrliminub.getText().toString().trim());Spinner ctrreadkeyen=findViewById(R.id.spin_selereadauth);ReadNeedKey=(byte)ctrreadkeyen.getSelectedItemId();Spinner spls = findViewById(R.id.spin_seleopencloskey);if (spls.getSelectedItemId()==0){       //卡片开启密码保护功能,开启后要记住卡密码,否则卡报废!!!myctrlword=(byte)(myctrlword+4);mypiccdata[3]=beginblock;           //配置:密码保护起始页,要根据不同类型的卡来设置myctrlword=(byte)(myctrlword+1);mypiccdata[4]=(byte)(KeyErrNum % 8); //配置:最大卡密码认证错误次数if(ReadNeedKey>0){                   //配置:读卡时需要认证卡密码mypiccdata[4]=(byte)(mypiccdata[4]+(byte)(0x80));}myctrlword=(byte)(myctrlword+2);   //配置:启用计数器EditText ctrnewkey=findViewById(R.id.edit_newkey);String newkeystr=ctrnewkey.getText().toString().trim();if (newkeystr.length() != 8){tv.setText("密钥是8位16进制数据,请输入正确的新密钥!");return;}else {for (int i = 0; i < 4; i++) {newPickey[i] = (byte) Integer.parseInt(newkeystr.substring(i * 2, i * 2 + 2), 16);//只有用Integer.parseInt才能杜绝大于128时的错误mypiccdata[8+i]= (byte) Integer.parseInt(newkeystr.substring(i * 2, i * 2 + 2), 16);//只有用Integer.parseInt才能杜绝大于128时的错误}}EditText ctrpack=findViewById(R.id.edit_packkey);String packkeystr=ctrpack.getText().toString().trim();if (packkeystr.length() != 4){tv.setText("PACK密钥确认码是4位16进制数据,请输入正确的密钥确认码!");return;}else {for (int i = 0; i < 2; i++) {mypiccdata[12+i] = (byte) Integer.parseInt(packkeystr.substring(i * 2, i * 2 + 2), 16);//只有用Integer.parseInt才能杜绝大于128时的错误}}}else{   //卡片取消密码保护功能mypiccdata[3]=(byte)(0xff);myctrlword=(byte)(myctrlword+1);myctrlword=(byte)(myctrlword+2);}status = ourmifare.piccinitntag(myctrlword,mypiccserial,mypicckey,mypiccdata) ;if (status == 0) {ourmifare.pcdbeep(38);String uidstr = "";for (int i = 0; i < 7; i++) {String bytestr = "00" + Integer.toHexString(mypiccserial[i] & 0xff);uidstr = uidstr + bytestr.substring(bytestr.length() - 2, bytestr.length()) ;}ctruid.setText(uidstr);tv.setText("设置卡密码及保护机制成功!"+"\n卡片序号:" + uidstr);} else {PrintErrInf(status);   //返回代码提示}}public void ReadNtagCard(View view){byte status=1;                       //存放返回值byte[] mypiccserial = new byte[7];   //7字节卡号byte[] mypicckey=new byte[4];        //4个字节的卡密码byte[] mypiccdata=new byte[48];      //48个字节读卡的数据缓冲byte myblockaddr;                    //读起始页地址byte myblocksize;                    //读卡页数byte myctrlword;                     //取值0不认证密码,16要认证卡密码tv.setText("");TextView ctruid=findViewById(R.id.textViewuid);ctruid.setText("");EditText ctrrwdata=findViewById(R.id.edit_rwdata);ctrrwdata.setText("");CheckBox ctrauthen=findViewById(R.id.check_seleauthkeyen);if (ctrauthen.isChecked()){myctrlword=16;EditText ctrauthkey=findViewById(R.id.edit_authkey);String authkeystr=ctrauthkey.getText().toString().trim();if (authkeystr.length() != 8){tv.setText("认证密钥是8位16进制数据,请输入正确的认证密钥!");return;}else {for (int i = 0; i < 4; i++) {mypicckey[i] = (byte) Integer.parseInt(authkeystr.substring(i * 2, i * 2 + 2), 16);//只有用Integer.parseInt才能杜绝大于128时的错误}}}else{myctrlword=0;}EditText ctrblokadd=findViewById(R.id.edit_RWbeginblock);myblockaddr=(byte)Integer.parseInt(ctrblokadd.getText().toString().trim());EditText ctrbloknum=findViewById(R.id.edit_RWblocks);myblocksize=(byte)Integer.parseInt(ctrbloknum.getText().toString().trim());//使用循环的方式读取,每次读一个块,这样可以连续读取标签N个块数据if (myblocksize<1){tv.setText("请输入本次读写块数!");return;}int j=0;String readdatastr="";while (j<myblocksize){status = ourmifare.piccreadexntag(myctrlword,mypiccserial,mypicckey,(byte)(myblockaddr+j),(byte)1,mypiccdata) ;if (status==0){for (int i=0;i<4;i++ ){String bytestr = "00" + Integer.toHexString(mypiccdata[i] & 0xFF);readdatastr = readdatastr + bytestr.substring(bytestr.length() - 2, bytestr.length())+" ";}j++;}else{ j=myblocksize;}}if (status == 0) {ourmifare.pcdbeep(38);String uidstr = "";for (int i = 0; i < 7; i++) {String bytestr = "00" + Integer.toHexString(mypiccserial[i] & 0xFF);uidstr = uidstr + bytestr.substring(bytestr.length() - 2, bytestr.length()) ;}ctruid.setText(uidstr);ctrrwdata.setText(readdatastr);tv.setText("读取Ntag卡块数据成功!"+"\n卡片序号:" + uidstr);} else {PrintErrInf(status);   //返回代码提示}/*      执行一次读卡操作,每次最多可以读12个块if (myblocksize<1 || myblocksize>12){tv.setText("读写块数必须>=1,13<=");return;}status = ourmifare.piccreadexntag(myctrlword,mypiccserial,mypicckey,myblockaddr,myblocksize,mypiccdata) ;if (status == 0) {ourmifare.pcdbeep(38);String uidstr = "";for (int i = 0; i < 7; i++) {String bytestr = "00" + Integer.toHexString(mypiccserial[i] & 0xFF);uidstr = uidstr + bytestr.substring(bytestr.length() - 2, bytestr.length()) ;}ctruid.setText(uidstr);String databuf="";for (int i = 0; i < myblocksize*4; i++) {String bytestr = "00" + Integer.toHexString(mypiccdata[i] & 0xFF);databuf = databuf + bytestr.substring(bytestr.length() - 2, bytestr.length()) + " ";}ctrrwdata.setText(databuf);tv.setText("读取Ntag卡块数据成功!"+"\n卡片序号:" + uidstr);} else {PrintErrInf(status);   //返回代码提示}*/}public void WriteNtagCard(View view){byte status=1;                       //存放返回值byte[] mypiccserial = new byte[7];   //7字节卡号byte[] mypicckey=new byte[4];        //4个字节的卡密码byte[] mypiccdata=new byte[48];      //48个字节读卡的数据缓冲byte myblockaddr;                    //读起始页地址byte myblocksize;                    //读卡页数byte myctrlword;                     //取值0不认证密码,16要认证卡密码tv.setText("");TextView ctruid=findViewById(R.id.textViewuid);ctruid.setText("");CheckBox ctrauthen=findViewById(R.id.check_seleauthkeyen);if (ctrauthen.isChecked()){myctrlword=16;EditText ctrauthkey=findViewById(R.id.edit_authkey);String authkeystr=ctrauthkey.getText().toString().trim();if (authkeystr.length() != 8){tv.setText("认证密钥是8位16进制数据,请输入正确的认证密钥!");return;}else {for (int i = 0; i < 4; i++) {mypicckey[i] = (byte) Integer.parseInt(authkeystr.substring(i * 2, i * 2 + 2), 16);//只有用Integer.parseInt才能杜绝大于128时的错误}}}else{myctrlword=0;}EditText ctrblokadd=findViewById(R.id.edit_RWbeginblock);myblockaddr=(byte)Integer.parseInt(ctrblokadd.getText().toString().trim());EditText ctrbloknum=findViewById(R.id.edit_RWblocks);myblocksize=(byte)Integer.parseInt(ctrbloknum.getText().toString().trim());if (myblocksize<1){tv.setText("请输入本次读写块数!");return;}EditText ctrrwdata=findViewById(R.id.edit_rwdata);String rwdatahex=ctrrwdata.getText().toString().trim();String[] strArr = rwdatahex.split("\\ ");    /*分割接收到的数据后再分析、处理、返回指令*/if (strArr.length<myblocksize*4) {tv.setText("写入数据不足,请输入" + Integer.toString(myblocksize*4 * 2) + "位16进制写入数据!");return;}//使用循环的方式写卡,每次写一个块,这样可以连续写入N个块数据int j=0;while (j<myblocksize) {for (int i=0;i<4;i++){mypiccdata[i]=(byte)(Integer.parseInt(strArr[j*4+i],16));}status = ourmifare.piccwriteexntag(myctrlword, mypiccserial, mypicckey, (byte)(myblockaddr+j), (byte)1, mypiccdata);if (status==0){j++;}else{j=myblocksize;}}if (status == 0) {ourmifare.pcdbeep(38);String uidstr = "";for (int i = 0; i < 7; i++) {String bytestr = "00" + Integer.toHexString(mypiccserial[i] & 0xFF);uidstr = uidstr + bytestr.substring(bytestr.length() - 2, bytestr.length()) ;}ctruid.setText(uidstr);tv.setText("写入Ntag卡块数据成功!"+"\n卡片序号:" + uidstr);} else {PrintErrInf(status);   //返回代码提示}/*     //执行一次写卡操作,每次最多可以读11个块if (myblocksize<1 || myblocksize>11){tv.setText("读写块数必须>=1,12<=");return;}for (int i=0;i<strArr.length;i++){mypiccdata[i]=(byte)(Integer.parseInt(strArr[i],16));}status = ourmifare.piccwriteexntag(myctrlword, mypiccserial, mypicckey, myblockaddr, myblocksize, mypiccdata);if (status == 0) {ourmifare.pcdbeep(38);String uidstr = "";for (int i = 0; i < 7; i++) {String bytestr = "00" + Integer.toHexString(mypiccserial[i] & 0xFF);uidstr = uidstr + bytestr.substring(bytestr.length() - 2, bytestr.length()) ;}ctruid.setText(uidstr);tv.setText("写入Ntag卡块数据成功!"+"\n卡片序号:" + uidstr);} else {PrintErrInf(status);   //返回代码提示}*/}public void PrintErrInf(byte errcode) {String dispstr="";switch(errcode){case 1:dispstr="错误代码:1,0~2块都没读出来,可能刷卡太块。但卡序列号已被读出来!";break;case 2:dispstr="错误代码:2,第0块已被读出,但1~2块读取失败。卡序列号已被读出来!";break;case 3:dispstr="错误代码:3,第0、1块已被读出,但2块读取失败。卡序列号已被读出来!";break;case 8:dispstr="错误代码:8,未寻到卡,请重新拿开卡后再放到感应区!";break;case 9:dispstr="错误代码:9,有多张卡在感应区,寻卡过程中防冲突失败,读序列吗错误!";break;case 10:dispstr="错误代码:10,该卡可能已被休眠,无法选中卡片!";break;case 11:dispstr="错误代码:11,密码装载失败!";break;case 12:dispstr="错误代码:12,卡片密码认证失败!";break;case 13:dispstr="错误代码:13,读本块失败,原因是刷卡太快或本块所对应的区还没通过密码认证!";break;case 14:dispstr="错误代码:14,写本块失败,原因是刷卡太快或本块所对应的区还没通过密码认证!";break;case 21:dispstr="错误代码:21,没有动态库!";break;case 22:dispstr="错误代码:22,动态库或驱动程序异常!";break;case 23:dispstr="错误代码:23,发卡器尚未插入!";break;case 24:dispstr="错误代码:24,操作超时,一般是动态库没有反映!";break;case 25:System.out.print("错误代码:25,发送字数不够!");break;case 26:System.out.print("错误代码:26,发送的CRC错!");break;case 27:System.out.print("错误代码:27,接收的字数不够!");break;case 28:System.out.print("错误代码:28,接收的CRC错!");break;default:System.out.print("未知错误,错误代码:"+Integer.toString(errcode));break;}tv = findViewById(R.id.sample_text);tv.setText(dispstr);}
}

 

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/615837.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

边缘计算的舞台,挑战与机遇相伴

目录 前言 边缘计算保卫战&#xff1a;数据宝藏的隐藏与探索 稳如磐石&#xff1a;保障你的边缘计算宝藏安稳运行&#xff01; 打破时间的桎梏&#xff1a;为边缘计算注入超快速度与实时表演 边缘计算&#xff1a;应对多样性和异构性的酷炫策略大揭秘 边缘计算&#xff1a;释…

C#实现Excel合并单元格数据导入数据集

目录 功能需求 Excel与DataSet的映射关系 范例运行环境 Excel DCOM 配置 设计实现 组件库引入 ​方法设计 返回值 参数设计 打开数据源并计算Sheets 拆分合并的单元格 创建DataTable 将单元格数据写入DataTable 总结 功能需求 将Excel里的worksheet表格导入到Da…

2023年全国职业院校技能大赛软件测试赛题—单元测试卷④

任务二 单元测试 一、任务要求 题目1&#xff1a;根据下列流程图编写程序实现相应分析处理并显示结果。返回结果“ax&#xff1a;”&#xff08;x为2、3或4&#xff09;&#xff1b;其中变量x、y均须为整型。编写程序代码&#xff0c;使用JUnit框架编写测试类对编写的程序代码…

通义千问AI挑战赛赛后反思

个人理解&#xff1a; 初赛阶段主要聚焦在如何通过 SFT 提升基础模型的代码能力&#xff0c;需要选手基于最新开源的 Qwen 1.8 模型作为基础模型&#xff0c;上分的关键主要通过收集高质量的代码数据提升模型的在Python, JavaScript, Java, Go, C, Rust六种编程语言的代码生成…

《SPSS统计学基础与实证研究应用精解》视频讲解:SPSS依托统计学处理数据的应用场景

《SPSS统计学基础与实证研究应用精解》1.4 视频讲解 视频为《SPSS统计学基础与实证研究应用精解》张甜 杨维忠著 清华大学出版社 一书的随书赠送视频讲解1.4节内容。本书已正式出版上市&#xff0c;当当、京东、淘宝等平台热销中&#xff0c;搜索书名即可。本书旨在手把手教会使…

肝了半个月的学习路线终于上线了,升职加薪,轻松拿捏!

大家好&#xff0c;我是冰河~~ 最近有不少小伙伴问我出去面试找一份好工作要学习哪些知识和技术&#xff0c;有没有什么好的学习路线&#xff0c;这不&#xff0c;我连夜肝了这份Java完整高清学习路线。 学习路线 完整路线 这份Java完整高清学习路线的总体路线图如下所示。…

微信小程序开发学习笔记《7》全局配置以及小程序窗口

微信小程序开发学习笔记《7》全局配置以及小程序窗口 博主正在学习微信小程序开发&#xff0c;希望记录自己学习过程同时与广大网友共同学习讨论。全局配置官方文档 一、全局配置文件及常用的配置项 小程序根目录下的app.json 文件是小程序的全局配置文件。 常用的配置项如…

Redis的实现三:c语言实现平衡二叉树,通过平衡二叉树实现排序集

概况&#xff1a;Redis中的排序集数据结构是相当复杂的独特而有用的东西。它不仅提供了顺序排序数据的能力&#xff0c;而且具有按排名查询有序数据的独特特性。 Redis中的排序集 &#xff08;Sorted Set&#xff09;是一种特殊的数据结构&#xff0c;它结合了集合&#xff0…

YOLOv7-tiny,通过pycocotools包得到预测大中小尺寸目标的指标值

文章目录 参考链接步骤认识正确的instances_val2017.json文件格式 代码&#xff08;mogui_tococo.py&#xff0c;用于我自己的数据集&#xff09; 参考链接 需要先在环境中安装pycocotools pip install pycocotools魔鬼面具的代码&#xff1a;objectdetection-tricks/tricks_…

第 379 场 LeetCode 周赛题解

A 对角线最长的矩形的面积 模拟 class Solution { public:int areaOfMaxDiagonal(vector<vector<int>> &dimensions) {int res 0, len2 0;for (auto &x: dimensions)if (x[0] * x[0] x[1] * x[1] > len2 || x[0] * x[0] x[1] * x[1] len2 &&am…

SAP 如何快速查询成本的异常

每当月末CO月结的时候&#xff0c;生产企业或多或少会遇到标准成本与实际成本差异偏大的情况&#xff0c;我们如何快速查看产成品的成本异常&#xff0c;一般来说二者偏差5%是正常的&#xff0c;如果偏差20%&#xff0c;就要重点关注。我们通过0062报表来查看 进入“屏幕选择”…

进销存+小程序商城:实现批发零售企业的互联网转型与管理升级

在当今互联网高速发展的时代&#xff0c;越来越多的批发零售企业开始开始考虑转型。在这个行业中&#xff0c;企业要想取得更好的发展&#xff0c;就要积极地拥抱互联网。专属的订货商城小程序是企业转型的第一步。通过将进销存与订货商城一体化&#xff0c;企业可以更好地满足…

argparse库

引言 argparse-------python用于解析命令行参数的标准模块 快速上手 import argparse parser argparse.ArgumentParser() 创建一个命令行解析器对象 parser.add_argument() 向解析器…

APP流量变现——4项关键指标决定了APP混合变现的收入

APP流量变现的方式有很多种&#xff0c;主要的可以分为IAA&#xff08;广告&#xff09;收入、IAP&#xff08;用户应用内付费&#xff09;收入、订阅收入、单次买断收入。这里主要围绕当前流行的混合变现模式&#xff0c;即广告收入&#xff08;IAA&#xff09;应用内付费&…

外汇天眼:塞浦路斯证券交易委员会(CySEC)确认了四家投资公司退出投资者赔偿基金(ICF)会员资格

塞浦路斯证券交易委员会&#xff08;CySEC&#xff09;今天确认了四家投资公司已被取消其在投资者赔偿基金&#xff08;ICF&#xff09;的会员资格。 以下公司不再是ICF的会员&#xff1a; 1.Stone Edge Capital Ltd&#xff08;LEI 213800PZFB9VV8FNWB30&#xff09;&#xf…

yum来安装php727

yum 安装php727,一键安装&#xff0c;都是安装在系统的默认位置&#xff0c;方便快捷 先确定linux平台中centos的版本信息&#xff0c;一下内容针对el7 查看linux版本 &#xff1a; cat /etc/redhat-release 查看内核版本命令&#xff1a; cat /proc/version (0)如果有安装好…

3万字数据结构与算法学习笔记+知识点总结

文章目录 数据结构与算法排序排序算法常见排序算法复杂度冒泡排序&#xff08;Bubble Sort&#xff09;选择排序&#xff08;Selection Sort&#xff09;插入排序&#xff08;Insertion Sort&#xff09;希尔排序&#xff08;Shell Sort&#xff09;堆排序&#xff08;Heap Sor…

浅谈电能管理系统在智能轨道交通中的设计与应用——安科瑞 顾烊宇

摘要&#xff1a;城市轨道交通可以填补市民出行方式的空缺&#xff0c;它的运行需要有持续的电能提供支持。为了给轨道交通营造稳定的运行环境&#xff0c;迫切需要建立相应的电能管理系统&#xff0c;以此实现高质量的电能供给。在本文中&#xff0c;将对应的电能管理系统作为…

MysqL——深入MySQL原理(一)

文章目录 MySQL架构图MySQL执行流程简要执行流程&#xff1a;详细执行流程 存储引擎SQL执行顺序存储结构实战演示 MySQL架构图 图例如下&#xff1a; server层&#xff1a; Connection Pool :连接池&#xff0c;负责管理持有所有的连接&#xff0c;采用BIO的技术&#xff0c;…