Android Studio读写低频RFID T5557卡源码

本示例使用的发卡器:https://item.taobao.com/item.htm?id=675212889085&spm=a1z10.5-c.w4002-21818769070.13.21166f89nKgnJ7 

<?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=".T5557Activity">
    <androidx.appcompat.widget.Toolbar
        android: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">

        <TextView
            android: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" />

        <TextView
            android:id="@+id/TextViewlabelDisp"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:text="T5557卡测试页  "
            android:textColor="@color/white"
            android:textSize="16sp"
            android:gravity="center_horizontal|right|center"
            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>

    <TextView
        android:id="@+id/sample_text"
        android:layout_width="fill_parent"
        android:layout_height="150dp"
        android:padding="3dp"
        android:text="操作结果"
        android:textSize="12sp"
        android:background="@drawable/shape4border"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"

        />


    <ScrollView
        android: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.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:padding="3dp" >

            <CheckBox
                android:id="@+id/chkPwdT5557"
                android:layout_width="wrap_content"
                android:layout_height="30dp"
                android:layout_marginLeft="2dp"
                android:textSize="12sp"
                android:checked="false"
                android:text="带密码操作"
                app:layout_constraintLeft_toLeftOf="parent"
                app:layout_constraintTop_toTopOf="parent"/>

            <EditText
                android:id="@+id/editTextPwdT5557"
                android:layout_width="80dp"
                android:layout_height="wrap_content"
                android:layout_marginLeft="10dp"
                android:background="@drawable/shape4border"
                android:digits="0123456789ABCDEFabcdef"
                android:gravity="center"
                android:inputType="textCapCharacters"
                android:maxLength="8"
                android:maxLines="1"
                android:text="00000000"
                android:textSize="14sp"
                app:layout_constraintBottom_toBottomOf="@+id/chkPwdT5557"
                app:layout_constraintLeft_toRightOf="@+id/chkPwdT5557"
                app:layout_constraintTop_toTopOf="@+id/chkPwdT5557"

                />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="(十六进制)"
                android:textSize="12sp"
                android:layout_marginLeft="10dp"
                app:layout_constraintLeft_toRightOf="@+id/editTextPwdT5557"
                app:layout_constraintTop_toTopOf="@+id/chkPwdT5557"
                app:layout_constraintBottom_toBottomOf="@+id/chkPwdT5557"/>



            <CheckBox
                android:id="@+id/chkUidNeedT5557"
                android:layout_width="wrap_content"
                android:layout_height="30dp"
                android:layout_marginLeft="2dp"
                android:textSize="12sp"
                android:checked="false"
                android:text="仅操作指定卡号的卡"
                app:layout_constraintLeft_toLeftOf="parent"
                app:layout_constraintTop_toBottomOf="@+id/chkPwdT5557"/>

            <EditText
                android:id="@+id/editTextUidT5557"
                android:layout_width="110dp"
                android:layout_height="wrap_content"
                android:layout_marginLeft="10dp"
                android:background="@drawable/shape4border"
                android:digits="0123456789ABCDEFabcdef"
                android:gravity="center"
                android:inputType="textCapCharacters"
                android:maxLength="12"
                android:maxLines="1"
                android:text="000000000000"
                android:textSize="14sp"
                app:layout_constraintBottom_toBottomOf="@+id/chkUidNeedT5557"
                app:layout_constraintLeft_toRightOf="@+id/chkUidNeedT5557"
                app:layout_constraintTop_toTopOf="@+id/chkUidNeedT5557" />



            <TextView
                android:id="@+id/TextViewlabel0"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="返回数据:"
                android:textSize="12sp"
                app:layout_constraintLeft_toLeftOf="parent"
                app:layout_constraintBottom_toTopOf="@+id/TextViewRetDataT5557"/>

            <TextView
                android:id="@+id/TextViewRetDataT5557"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:padding="3dp"
                android:text=""
                android:textSize="12sp"
                android:background="@drawable/shape4border"
                app:layout_constraintLeft_toLeftOf="parent"
                app:layout_constraintTop_toBottomOf="@+id/btnRetDataClrT5557"

                />

            <Button
                android:id="@+id/btnRetDataClrT5557"
                android:layout_width="wrap_content"
                android:layout_height="40dp"
                android:onClick="textclear5557"
                android:text="清空数据"
                android:textSize="11sp"
                app:layout_constraintTop_toBottomOf="@+id/editTextUidT5557"
                app:layout_constraintRight_toRightOf="parent" />

            <Button
                android:id="@+id/btnPwdChangeT5557"
                android:layout_width="wrap_content"
                android:layout_height="40dp"
                android:onClick="changepwd5557"
                android:text="修改卡密码"
                android:textSize="11sp"
                app:layout_constraintRight_toRightOf="parent"
                app:layout_constraintTop_toBottomOf="@+id/TextViewRetDataT5557" />

            <TextView
                android:id="@+id/TextViewlabel1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="新密码:"
                android:textSize="12sp"
                app:layout_constraintLeft_toLeftOf="parent"
                app:layout_constraintTop_toTopOf="@+id/btnPwdChangeT5557"
                app:layout_constraintBottom_toBottomOf="@+id/btnPwdChangeT5557"

                />

            <EditText
                android:id="@+id/editTextPwdNewT5557"
                android:layout_width="80dp"
                android:layout_height="wrap_content"
                android:layout_marginLeft="10dp"
                android:background="@drawable/shape4border"
                android:digits="0123456789ABCDEFabcdef"
                android:gravity="center"
                android:inputType="textCapCharacters"
                android:maxLength="8"
                android:maxLines="1"
                android:text="00000000"
                android:textSize="14sp"
                app:layout_constraintBottom_toBottomOf="@+id/btnPwdChangeT5557"
                app:layout_constraintLeft_toRightOf="@+id/TextViewlabel1"
                app:layout_constraintTop_toTopOf="@+id/btnPwdChangeT5557" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="(十六进制)"
                android:textSize="12sp"
                android:layout_marginLeft="10dp"
                app:layout_constraintLeft_toRightOf="@+id/editTextPwdNewT5557"
                app:layout_constraintTop_toTopOf="@+id/editTextPwdNewT5557"
                app:layout_constraintBottom_toBottomOf="@+id/editTextPwdNewT5557"/>


            <TextView
                android:id="@+id/TextViewlabel2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="第0页:"
                android:textSize="12sp"
                app:layout_constraintLeft_toLeftOf="parent"
                app:layout_constraintTop_toTopOf="@+id/chkB0T5557"
                app:layout_constraintBottom_toBottomOf="@+id/chkB0T5557"
                />

            <CheckBox
                android:id="@+id/chkB0T5557"
                android:layout_width="wrap_content"
                android:layout_height="30dp"
                android:layout_marginLeft="2dp"
                android:textSize="11sp"
                android:checked="false"
                android:text="块0"
                app:layout_constraintLeft_toRightOf="@+id/TextViewlabel2"
                app:layout_constraintTop_toBottomOf="@+id/btnPwdChangeT5557"/>

            <CheckBox
                android:id="@+id/chkB1T5557"
                android:layout_width="wrap_content"
                android:layout_height="30dp"
                android:layout_marginLeft="2dp"
                android:textSize="11sp"
                android:checked="false"
                android:text="块1"
                app:layout_constraintLeft_toRightOf="@+id/chkB0T5557"
                app:layout_constraintBottom_toBottomOf="@+id/chkB0T5557"/>
            <CheckBox
                android:id="@+id/chkB2T5557"
                android:layout_width="wrap_content"
                android:layout_height="30dp"
                android:layout_marginLeft="2dp"
                android:textSize="11sp"
                android:checked="false"
                android:text="块2"
                app:layout_constraintLeft_toRightOf="@+id/chkB1T5557"
                app:layout_constraintBottom_toBottomOf="@+id/chkB0T5557"/>

            <CheckBox
                android:id="@+id/chkB3T5557"
                android:layout_width="wrap_content"
                android:layout_height="30dp"
                android:layout_marginLeft="2dp"
                android:textSize="11sp"
                android:checked="false"
                android:text="块3"
                app:layout_constraintLeft_toRightOf="@+id/chkB2T5557"
                app:layout_constraintBottom_toBottomOf="@+id/chkB0T5557"/>
            <CheckBox
                android:id="@+id/chkB4T5557"
                android:layout_width="wrap_content"
                android:layout_height="30dp"
                android:layout_marginLeft="2dp"
                android:textSize="12sp"
                android:checked="false"
                android:text="块4"
                app:layout_constraintLeft_toRightOf="@+id/chkB3T5557"
                app:layout_constraintBottom_toBottomOf="@+id/chkB0T5557"/>
            <CheckBox
                android:id="@+id/chkB5T5557"
                android:layout_width="wrap_content"
                android:layout_height="30dp"
                android:layout_marginLeft="2dp"
                android:textSize="12sp"
                android:checked="false"
                android:text="块5"
                app:layout_constraintLeft_toRightOf="@+id/chkB4T5557"
                app:layout_constraintBottom_toBottomOf="@+id/chkB0T5557"/>

            <CheckBox
                android:id="@+id/chkB6T5557"
                android:layout_width="wrap_content"
                android:layout_height="30dp"
                android:layout_marginLeft="2dp"
                android:checked="false"
                android:text="块6"
                android:textSize="11sp"
                app:layout_constraintLeft_toLeftOf="parent"
                app:layout_constraintTop_toBottomOf="@+id/chkB0T5557" />

            <CheckBox
                android:id="@+id/chkB7T5557"
                android:layout_width="wrap_content"
                android:layout_height="30dp"
                android:layout_marginLeft="2dp"
                android:textSize="12sp"
                android:checked="false"
                android:text="块7"
                app:layout_constraintLeft_toRightOf="@+id/chkB6T5557"
                app:layout_constraintBottom_toBottomOf="@+id/chkB6T5557"/>

            <TextView
                android:id="@+id/TextViewlabel3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="第1页:"
                android:textSize="12sp"
                android:layout_marginLeft="20dp"
                app:layout_constraintLeft_toRightOf="@+id/chkB7T5557"
                app:layout_constraintTop_toTopOf="@+id/chkB7T5557"
                app:layout_constraintBottom_toBottomOf="@+id/chkB7T5557"
                />

            <CheckBox
                android:id="@+id/chkB11T5557"
                android:layout_width="wrap_content"
                android:layout_height="30dp"
                android:checked="false"
                android:text="块1"
                android:textSize="11sp"
                app:layout_constraintBottom_toBottomOf="@+id/chkB7T5557"
                app:layout_constraintLeft_toRightOf="@+id/TextViewlabel3" />

            <CheckBox
                android:id="@+id/chkB12T5557"
                android:layout_width="wrap_content"
                android:layout_height="30dp"
                android:layout_marginLeft="2dp"
                android:checked="false"
                android:text="块2"
                android:textSize="11sp"
                app:layout_constraintBottom_toBottomOf="@+id/chkB7T5557"
                app:layout_constraintLeft_toRightOf="@+id/chkB11T5557" />

            <CheckBox
                android:id="@+id/chkB13T5557"
                android:layout_width="wrap_content"
                android:layout_height="30dp"
                android:layout_marginLeft="2dp"
                android:checked="false"
                android:text="块3"
                android:textSize="11sp"
                app:layout_constraintBottom_toBottomOf="@+id/chkB7T5557"
                app:layout_constraintLeft_toRightOf="@+id/chkB12T5557" />

            <CheckBox
                android:id="@+id/chkB14T5557"
                android:layout_width="wrap_content"
                android:layout_height="30dp"
                android:layout_marginLeft="2dp"
                android:checked="false"
                android:text="块4"
                android:textSize="11sp"
                app:layout_constraintBottom_toBottomOf="@+id/chkB7T5557"
                app:layout_constraintLeft_toRightOf="@+id/chkB13T5557" />

            <Button
                android:id="@+id/btnReadT5557"
                android:layout_width="wrap_content"
                android:layout_height="40dp"
                android:layout_marginRight="20dp"
                android:onClick="read5557"
                android:text="读卡"
                android:textSize="11sp"
                app:layout_constraintRight_toLeftOf="@+id/btnWriteT5557"
                app:layout_constraintTop_toBottomOf="@+id/chkB7T5557" />

            <Button
                android:id="@+id/btnWriteT5557"
                android:layout_width="wrap_content"
                android:layout_height="40dp"
                android:onClick="write5557"
                android:text="写卡"
                android:textSize="11sp"
                app:layout_constraintRight_toRightOf="parent"
                app:layout_constraintTop_toBottomOf="@+id/chkB7T5557" />

            <TextView
                android:id="@+id/TextViewlabel4"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="写入数据:"
                android:textSize="12sp"
                app:layout_constraintBottom_toBottomOf="@+id/btnReadT5557"
                app:layout_constraintLeft_toLeftOf="parent" />

            <EditText
                android:id="@+id/editTextDataT5557"
                android:layout_width="0dp"
                android:layout_height="40dp"
                android:background="@drawable/shape4border"
                android:digits="0123456789ABCDEFabcdef"
                android:gravity="left"
                android:inputType="textCapCharacters"
                android:maxLength="128"
                android:text="11111111"
                android:padding="3dp"
                android:textSize="12sp"
                app:layout_constraintLeft_toLeftOf="@+id/TextViewRetDataT5557"
                app:layout_constraintRight_toRightOf="@+id/TextViewRetDataT5557"
                app:layout_constraintTop_toBottomOf="@+id/btnWriteT5557" />

            <TextView
                android:id="@+id/TextViewlabel5"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="配置区位于第0页第0块:\ne5550兼容模式,主控键值默认(不等于6及不等于9),波特率RF/32,调制模式为\n曼彻斯特码,相位键控RF/2,自动发送最大块为1,卡片复位无延时\n如需改动以上值请联系我们 !"
                android:textSize="12sp"
                app:layout_constraintTop_toBottomOf="@+id/editTextDataT5557"
                app:layout_constraintLeft_toLeftOf="parent" />

            <CheckBox
                android:id="@+id/chkAOR"
                android:layout_width="wrap_content"
                android:layout_height="30dp"
                android:layout_marginLeft="2dp"
                android:textSize="12sp"
                android:checked="false"
                android:text="AOR请求应答模式"
                android:onClick="updateset5557"
                app:layout_constraintLeft_toLeftOf="parent"
                app:layout_constraintTop_toBottomOf="@+id/TextViewlabel5"/>

            <CheckBox
                android:id="@+id/chkFrameEnd"
                android:layout_width="wrap_content"
                android:layout_height="30dp"
                android:layout_marginLeft="2dp"
                android:textSize="12sp"
                android:checked="true"
                android:text="帧终结符"
                android:onClick="updateset5557"
                app:layout_constraintLeft_toRightOf="@+id/chkAOR"
                app:layout_constraintBottom_toBottomOf="@+id/chkAOR"/>

            <CheckBox
                android:id="@+id/chkPwdSetT5557"
                android:layout_width="wrap_content"
                android:layout_height="30dp"
                android:layout_marginLeft="2dp"
                android:textSize="12sp"
                android:checked="false"
                android:text="启用密码读写功能,并设密码为"
                android:onClick="updateset5557"
                app:layout_constraintLeft_toLeftOf="parent"
                app:layout_constraintTop_toBottomOf="@+id/chkAOR"/>

            <EditText
                android:id="@+id/editTextPwdSetT5557"
                android:layout_width="80dp"
                android:layout_height="wrap_content"
                android:layout_marginLeft="10dp"
                android:background="@drawable/shape4border"
                android:digits="0123456789ABCDEFabcdef"
                android:gravity="center"
                android:inputType="textCapCharacters"
                android:maxLength="8"
                android:maxLines="1"
                android:text="00000000"
                android:textSize="14sp"
                app:layout_constraintBottom_toBottomOf="@+id/chkPwdSetT5557"
                app:layout_constraintLeft_toRightOf="@+id/chkPwdSetT5557"
                app:layout_constraintTop_toTopOf="@+id/chkPwdSetT5557"

                />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="(十六进制)"
                android:textSize="12sp"
                android:layout_marginLeft="10dp"
                app:layout_constraintLeft_toRightOf="@+id/editTextPwdSetT5557"
                app:layout_constraintTop_toTopOf="@+id/chkPwdSetT5557"
                app:layout_constraintBottom_toBottomOf="@+id/chkPwdSetT5557"/>

            <TextView
                android:id="@+id/TextViewlabel22"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="配置值:"
                android:textSize="12sp"
                app:layout_constraintTop_toTopOf="@+id/editTextConfigWordT5557"
                app:layout_constraintBottom_toBottomOf="@+id/editTextConfigWordT5557"
                app:layout_constraintLeft_toLeftOf="parent" />

            <EditText
                android:id="@+id/editTextConfigWordT5557"
                android:layout_width="68dp"
                android:layout_height="wrap_content"
                android:layout_marginTop="5dp"
                android:background="@drawable/shape4border"
                android:digits="0123456789ABCDEFabcdef"
                android:gravity="left"
                android:inputType="textCapCharacters"
                android:maxLength="8"
                android:text="00088028"
                android:paddingLeft="3dp"
                android:textSize="12sp"
                app:layout_constraintLeft_toRightOf="@+id/TextViewlabel22"
                app:layout_constraintTop_toBottomOf="@+id/chkPwdSetT5557"
                />


            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="(十六进制)"
                android:textSize="12sp"
                android:layout_marginLeft="10dp"
                app:layout_constraintLeft_toRightOf="@+id/editTextConfigWordT5557"
                app:layout_constraintTop_toTopOf="@+id/editTextConfigWordT5557"
                app:layout_constraintBottom_toBottomOf="@+id/editTextConfigWordT5557"/>

            <Button
                android:id="@+id/btnDefalutT5557"
                android:layout_width="wrap_content"
                android:layout_height="40dp"
                android:layout_marginRight="20dp"
                android:onClick="default5557"
                android:text="← 默认值"
                android:textSize="11sp"
                app:layout_constraintRight_toLeftOf="@+id/btnInitT5557"
                app:layout_constraintBottom_toBottomOf="@+id/btnInitT5557" />

            <Button
                android:id="@+id/btnInitT5557"
                android:layout_width="wrap_content"
                android:layout_height="40dp"
                android:onClick="init5557"
                android:text="设定配置"
                android:textSize="12sp"
                app:layout_constraintRight_toRightOf="parent"
                app:layout_constraintTop_toBottomOf="@+id/editTextConfigWordT5557"/>

            <Button
                android:id="@+id/btnT5557to4100"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:onClick="t5557to4100"
                android:text="t5557卡配置成ID卡"
                android:textSize="12sp"
                app:layout_constraintLeft_toLeftOf="parent"
                app:layout_constraintTop_toBottomOf="@+id/btnInitT5557"/>

            <TextView
                android:id="@+id/TextViewlabel23"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="厂商编码"
                android:textSize="12sp"
                app:layout_constraintTop_toTopOf="@+id/btnT5557to4100"
                app:layout_constraintBottom_toBottomOf="@+id/btnT5557to4100"
                app:layout_constraintLeft_toRightOf="@+id/btnT5557to4100" />

        </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.ouridr;
import com.reader.ourmifare;
public class T5557Activity extends AppCompatActivity {
    private TextView tv;
    private byte NEEDSERIAL = 0x01;   //需要只对指定系列号的卡操作
    private byte NEEDKEY = 0x02;      //需要用密码认证
    private byte LOCKBIT = 0x04;      //锁定配置块或数据块,仅对   t5557_init,t5557_write ,t5557_changekey函数有效
    private byte KEYENABLE = 0x08;    //启用本卡的密码功能
    private byte RESETCARD = 0x10;    //操作成功后重启卡片

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_t5557);
        androidx.appcompat.widget.Toolbar toolbar=findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);

        tv = findViewById(R.id.sample_text);
        tv.setText("操作结果");
    }
    @Override
    public 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 textclear5557(View view)
    {
        TextView tvls;
        tvls = findViewById(R.id.TextViewRetDataT5557);
        tvls.setText("");
    }

    public void default5557(View view)
    {
        EditText etls;
        CheckBox cbls;
        etls = findViewById(R.id.editTextConfigWordT5557);
        etls.setText("00088028");

        cbls = findViewById(R.id.chkAOR);//AOR请求应答模式
        cbls.setChecked(false);
        cbls = findViewById(R.id.chkFrameEnd);//帧终结符
        cbls.setChecked(true);
        cbls = findViewById(R.id.chkPwdSetT5557);//启用密码读写功能,并设密码为
        cbls.setChecked(false);
    }

    public void updateset5557(View view)
    {
        CheckBox cbls;
        CheckBox cbAOR;
        CheckBox cbPWD;

        EditText etls;
        byte[] Configdata = new byte[4];//配置值

        etls = findViewById(R.id.editTextConfigWordT5557);
        String strls = etls.getText().toString().trim();
        if(strls.length() < 8){
            strls = "00088028";
            Configdata[0] = 0x00;
            Configdata[1] = 0x08;
            Configdata[2] = (byte)0x80;
            Configdata[3] = 0x28;
        }
        else {
            for (byte i = 0; i < 4; i++) {
                Configdata[i] = (byte)Integer.parseInt(strls.substring(i * 2, i * 2 + 2),16);//只有用Integer.parseInt才能杜绝大于128时的错误
            }
        }
        
        cbAOR = findViewById(R.id.chkAOR);//AOR请求应答模式
        cbPWD = findViewById(R.id.chkPwdSetT5557);//启用密码读写功能,并设密码为
        if(cbAOR.isChecked()) {
            if(!cbPWD.isChecked()) {//密码没启用,AOR无效
                cbAOR.setChecked(false);
                Configdata[2] &= 0xfd;
                tv.setText("密码没启用,AOR无效");
            }
            else {
                Configdata[2] |= 0x02;
            }
        }
        else {
            Configdata[2] &= 0xfd;
        }

        cbls = findViewById(R.id.chkFrameEnd);//帧终结符
        if(cbls.isChecked()) {
            Configdata[3] |= 0x08;
        }
        else {
            Configdata[3] &= 0xf7;
        }

        if(cbPWD.isChecked()) {
            if ((Configdata[3] & 0xe0) > (6 * 32)) {//启用密码功能后,最大块不能为7
                Configdata[3] &= 0x1f;
                Configdata[3] |=(6 * 32);
            }
            Configdata[3] |= 0x10;//启用密码功能
        }
        else{
            Configdata[3] &= 0xef;//取消密码功能
            Configdata[2] &= 0xfd;
            cbAOR.setChecked(false);
        }

        etls.setText(String.format("%02X%02X%02X%02X",Configdata[0],Configdata[1],Configdata[2],Configdata[3]));

    }
    public void changepwd5557(View view)
    {
        byte i;
        byte j;
        byte status;//存放返回值

        byte myctrlword;//控制字

        byte[] oldpicckey = new byte[4];//密码
        byte[] mypiccserial = new byte[6];//卡序列号
        byte[] newpicckey = new byte[4];//指定写哪一块

        myctrlword = 0; //NEEDSERIAL:需要只对指定系列号的卡操作,NEEDKEY:需要用密码认证,LOCKBIT:锁定块,KEYENABLE:启用本卡的密码功能

        String strls;

        CheckBox cbls;
        EditText etls;

        cbls = findViewById(R.id.chkPwdT5557);
        if(cbls.isChecked()) {//本次操作需要密码验证
            etls = findViewById(R.id.editTextPwdT5557);
            strls = etls.getText().toString().trim();
            if(strls.length() < 8)
            {
                tv.setText("旧密码长度不足8位");
                return;
            }
            for (i = 0; i < 4; i++) {
                oldpicckey[i] = (byte)Integer.parseInt(strls.substring(i*2,i*2+2),16);//只有用Integer.parseInt才能杜绝大于128时的错误
            }
            myctrlword += ouridr.NEEDKEY;

        }

        cbls = findViewById(R.id.chkUidNeedT5557);
        if(cbls.isChecked()) {//仅操作指定卡号的卡
            etls = findViewById(R.id.editTextUidT5557);
            strls = etls.getText().toString().trim();
            if(strls.length() < 12)
            {
                tv.setText("卡号长度不足12位");
                return;
            }

            for (i = 0; i < 6; i++) {
                mypiccserial[i] = (byte)Integer.parseInt(strls.substring(i*2,i*2+2),16);//只有用Integer.parseInt才能杜绝大于128时的错误
            }
            myctrlword += ouridr.NEEDSERIAL;

        }

        etls = findViewById(R.id.editTextPwdNewT5557);
        strls = etls.getText().toString().trim();
        if(strls.length() < 8)
        {
            tv.setText("新密码长度不足8位!");
            return;
        }

        for (i = 0; i < 4; i++) {
            newpicckey[i] = (byte)Integer.parseInt(strls.substring(i*2,i*2+2),16);//只有用Integer.parseInt才能杜绝大于128时的错误
        }

        status = ouridr.t5557changekey(myctrlword,mypiccserial,oldpicckey,newpicckey);

        if(status == 0)
        {
            strls = "卡号[";
            strls += String.format("%02X%02X%02X%02X%02X%02X",mypiccserial[0],mypiccserial[1],mypiccserial[2],mypiccserial[3],mypiccserial[4],mypiccserial[5]);
            strls += "]";
            TextView tvls = findViewById(R.id.TextViewRetDataT5557);
            tvls.setText(strls);
            strls = "更改T5557卡密码成功";
            ouridr.beep(38);
        }
        else {
            strls=GetErrInf(status);
        }
        tv.setText(strls);

    }
    public void read5557(View view)
    {
        byte i;
        byte status;//存放返回值

        byte myctrlword;//控制字

        byte[] oldpicckey = new byte[4];//密码
        byte[] mypiccserial = new byte[6];//卡序列号
        byte[] mypiccdata = new byte[64];//读卡数据缓冲:卡无线转输分频比、卡内容长度(字节数),及最多返回12块的数据
        byte[] mypiccblockflag = new byte[2];//指定读哪一块

        myctrlword = 0; //NEEDSERIAL:需要只对指定系列号的卡操作,NEEDKEY:需要用密码认证,LOCKBIT:锁定块,KEYENABLE:启用本卡的密码功能

        String strls;

        CheckBox cbls;
        EditText etls;

        cbls = findViewById(R.id.chkPwdT5557);
        if(cbls.isChecked()) {//本次操作需要密码验证
            etls = findViewById(R.id.editTextPwdT5557);
            strls = etls.getText().toString().trim();
            if(strls.length() < 8)
            {
                tv.setText("密码长度不足8位");
                return;
            }
            for (i = 0; i < 4; i++) {
                oldpicckey[i] = (byte)Integer.parseInt(strls.substring(i*2,i*2+2),16);//只有用Integer.parseInt才能杜绝大于128时的错误
            }
            myctrlword += ouridr.NEEDKEY;

        }

        cbls = findViewById(R.id.chkUidNeedT5557);
        if(cbls.isChecked()) {//仅操作指定卡号的卡
            etls = findViewById(R.id.editTextUidT5557);
            strls = etls.getText().toString().trim();
            if(strls.length() < 12)
            {
                tv.setText("卡号长度不足12位");
                return;
            }

            for (i = 0; i < 6; i++) {
                mypiccserial[i] = (byte)Integer.parseInt(strls.substring(i*2,i*2+2),16);//只有用Integer.parseInt才能杜绝大于128时的错误
            }
            myctrlword += ouridr.NEEDSERIAL;

        }

        //操作块标志
        //第0页的块
        mypiccblockflag[0] = 0;

        cbls = findViewById(R.id.chkB0T5557);
        if(cbls.isChecked()) {
            mypiccblockflag[0] += 1;
        }

        cbls = findViewById(R.id.chkB1T5557);
        if(cbls.isChecked()) {
            mypiccblockflag[0] += 2;
        }

        cbls = findViewById(R.id.chkB2T5557);
        if(cbls.isChecked()) {
            mypiccblockflag[0] += 4;
        }

        cbls = findViewById(R.id.chkB3T5557);
        if(cbls.isChecked()) {
            mypiccblockflag[0] += 8;
        }

        cbls = findViewById(R.id.chkB4T5557);
        if(cbls.isChecked()) {
            mypiccblockflag[0] += 16;
        }

        cbls = findViewById(R.id.chkB5T5557);
        if(cbls.isChecked()) {
            mypiccblockflag[0] += 32;
        }

        cbls = findViewById(R.id.chkB6T5557);
        if(cbls.isChecked()) {
            mypiccblockflag[0] += 64;
        }

        cbls = findViewById(R.id.chkB7T5557);
        if(cbls.isChecked()) {
            mypiccblockflag[0] += 128;
        }

        //第1页
        mypiccblockflag[1] = 0;

        cbls = findViewById(R.id.chkB11T5557);
        if(cbls.isChecked()) {
            mypiccblockflag[1] += 2;
        }

        cbls = findViewById(R.id.chkB12T5557);
        if(cbls.isChecked()) {
            mypiccblockflag[1] += 4;
        }

        cbls = findViewById(R.id.chkB13T5557);
        if(cbls.isChecked()) {
            mypiccblockflag[1] += 8;
        }

        cbls = findViewById(R.id.chkB14T5557);
        if(cbls.isChecked()) {
            mypiccblockflag[1] += 16;
        }

        status = ouridr.t5557read(myctrlword,mypiccserial,oldpicckey,mypiccblockflag,mypiccdata);

        if(status == 0)
        {
            strls = "卡无线转输分频比[" + Integer.toString(mypiccdata[0]) + "],卡号[";
            strls += String.format("%02X%02X%02X%02X%02X%02X",mypiccserial[0],mypiccserial[1],mypiccserial[2],mypiccserial[3],mypiccserial[4],mypiccserial[5]);
            strls += "],卡数据[";
            for (i = 0; i < mypiccdata[1]; i++) {
                strls += String.format("%02X",mypiccdata[i+2]);
            }
            strls += "]";

            TextView tvls = findViewById(R.id.TextViewRetDataT5557);
            tvls.setText(strls);
            strls = "读T5557卡成功";
            ouridr.beep(38);
        }
        else {
            strls=GetErrInf(status);
        }
        tv.setText(strls);
    }
    public void write5557(View view)
    {
        byte i;
        byte j;
        byte status;//存放返回值

        byte myctrlword;//控制字

        byte[] oldpicckey = new byte[4];//密码
        byte[] mypiccserial = new byte[6];//卡序列号
        byte[] mypiccdata = new byte[64];//写入数据缓冲:最多12块的数据
        byte[] mypiccblockflag = new byte[2];//指定写哪一块

        myctrlword = 0; //NEEDSERIAL:需要只对指定系列号的卡操作,NEEDKEY:需要用密码认证,LOCKBIT:锁定块,KEYENABLE:启用本卡的密码功能

        String strls;

        CheckBox cbls;
        EditText etls;

        cbls = findViewById(R.id.chkPwdT5557);
        if(cbls.isChecked()) {//本次操作需要密码验证
            etls = findViewById(R.id.editTextPwdT5557);
            strls = etls.getText().toString().trim();
            if(strls.length() < 8)
            {
                tv.setText("密码长度不足8位");
                return;
            }
            for (i = 0; i < 4; i++) {
                oldpicckey[i] = (byte)Integer.parseInt(strls.substring(i*2,i*2+2),16);//只有用Integer.parseInt才能杜绝大于128时的错误
            }
            myctrlword += ouridr.NEEDKEY;

        }

        cbls = findViewById(R.id.chkUidNeedT5557);
        if(cbls.isChecked()) {//仅操作指定卡号的卡
            etls = findViewById(R.id.editTextUidT5557);
            strls = etls.getText().toString().trim();
            if(strls.length() < 12)
            {
                tv.setText("卡号长度不足12位");
                return;
            }

            for (i = 0; i < 6; i++) {
                mypiccserial[i] = (byte)Integer.parseInt(strls.substring(i*2,i*2+2),16);//只有用Integer.parseInt才能杜绝大于128时的错误
            }
            myctrlword += ouridr.NEEDSERIAL;

        }

        //操作块标志
        j = 0;
        //第0页的块
        mypiccblockflag[0] = 0;

        cbls = findViewById(R.id.chkB0T5557);
        if(cbls.isChecked()) {
            mypiccblockflag[0] += 1;
            j++;
        }

        cbls = findViewById(R.id.chkB1T5557);
        if(cbls.isChecked()) {
            mypiccblockflag[0] += 2;
            j++;
        }

        cbls = findViewById(R.id.chkB2T5557);
        if(cbls.isChecked()) {
            mypiccblockflag[0] += 4;
            j++;
        }

        cbls = findViewById(R.id.chkB3T5557);
        if(cbls.isChecked()) {
            mypiccblockflag[0] += 8;
            j++;
        }

        cbls = findViewById(R.id.chkB4T5557);
        if(cbls.isChecked()) {
            mypiccblockflag[0] += 16;
            j++;
        }

        cbls = findViewById(R.id.chkB5T5557);
        if(cbls.isChecked()) {
            mypiccblockflag[0] += 32;
            j++;
        }

        cbls = findViewById(R.id.chkB6T5557);
        if(cbls.isChecked()) {
            mypiccblockflag[0] += 64;
            j++;
        }

        cbls = findViewById(R.id.chkB7T5557);
        if(cbls.isChecked()) {
            mypiccblockflag[0] += 128;
            j++;
        }

        //第1页
        mypiccblockflag[1] = 0;

        cbls = findViewById(R.id.chkB11T5557);
        if(cbls.isChecked()) {
            mypiccblockflag[1] += 2;
            j++;
        }

        cbls = findViewById(R.id.chkB12T5557);
        if(cbls.isChecked()) {
            mypiccblockflag[1] += 4;
            j++;
        }

        cbls = findViewById(R.id.chkB13T5557);
        if(cbls.isChecked()) {
            mypiccblockflag[1] += 8;
            j++;
        }

        cbls = findViewById(R.id.chkB14T5557);
        if(cbls.isChecked()) {
            mypiccblockflag[1] += 16;
            j++;
        }

        //写卡数据准备
        if(j == 0)
        {
            tv.setText("请先选择需要写入的块");
            return;
        }
        etls = findViewById(R.id.editTextDataT5557);
        strls = etls.getText().toString().trim();
        if(strls.length() < (j*8))
        {
            tv.setText("写入数据长度不足,请补足数据!");
            return;
        }

        for (i = 0; i < (j*4); i++) {
            mypiccdata[i] = (byte)Integer.parseInt(strls.substring(i*2,i*2+2),16);//只有用Integer.parseInt才能杜绝大于128时的错误
        }

        status = ouridr.t5557write(myctrlword,mypiccserial,oldpicckey,mypiccblockflag,mypiccdata);
        if(status == 0) {
            strls = "卡号[";
            strls += String.format("%02X%02X%02X%02X%02X%02X", mypiccserial[0], mypiccserial[1], mypiccserial[2], mypiccserial[3], mypiccserial[4], mypiccserial[5]);
            strls += "]";
            TextView tvls = findViewById(R.id.TextViewRetDataT5557);
            tvls.setText(strls);
            strls = "写T5557卡成功";
            ouridr.beep(38);
        }else {
            strls=GetErrInf(status);
        }
            tv.setText(strls);
    }


    public void init5557(View view)
    {
        byte i;
        byte status;//存放返回值

        byte myctrlword;//控制字

        byte[] oldpicckey = new byte[4];//密码
        byte[] mypiccserial = new byte[6];//卡序列号
        byte[] mypiccdata = new byte[4];//写入数据缓冲
        byte[] newpicckey = new byte[4];//指定写哪一块

        myctrlword = 0; //NEEDSERIAL:需要只对指定系列号的卡操作,NEEDKEY:需要用密码认证,LOCKBIT:锁定块,KEYENABLE:启用本卡的密码功能

        String strls;

        CheckBox cbls;
        EditText etls;

        cbls = findViewById(R.id.chkPwdT5557);
        if(cbls.isChecked()) {//本次操作需要密码验证
            etls = findViewById(R.id.editTextPwdT5557);
            strls = etls.getText().toString().trim();
            if(strls.length() < 8)
            {
                tv.setText("密码长度不足8位");
                return;
            }
            for (i = 0; i < 4; i++) {
                oldpicckey[i] = (byte)Integer.parseInt(strls.substring(i*2,i*2+2),16);//只有用Integer.parseInt才能杜绝大于128时的错误
            }
            myctrlword += ouridr.NEEDKEY;

        }

        cbls = findViewById(R.id.chkPwdSetT5557);
        if(cbls.isChecked()) {//启用密码读写功能
            etls = findViewById(R.id.editTextPwdSetT5557);
            strls = etls.getText().toString().trim();
            if(strls.length() < 8)
            {
                tv.setText("新密码长度不足8位");
                return;
            }
            for (i = 0; i < 4; i++) {
                newpicckey[i] = (byte)Integer.parseInt(strls.substring(i*2,i*2+2),16);//只有用Integer.parseInt才能杜绝大于128时的错误
            }
            myctrlword += ouridr.KEYENABLE;

        }
        else {
            newpicckey[0] = 0x00;
            newpicckey[1] = 0x00;
            newpicckey[2] = 0x00;
            newpicckey[3] = 0x00;
        }

        cbls = findViewById(R.id.chkUidNeedT5557);
        if(cbls.isChecked()) {//仅操作指定卡号的卡
            etls = findViewById(R.id.editTextUidT5557);
            strls = etls.getText().toString().trim();
            if(strls.length() < 12)
            {
                tv.setText("卡号长度不足12位");
                return;
            }

            for (i = 0; i < 6; i++) {
                mypiccserial[i] = (byte)Integer.parseInt(strls.substring(i*2,i*2+2),16);//只有用Integer.parseInt才能杜绝大于128时的错误
            }
            myctrlword += ouridr.NEEDSERIAL;

        }

        //配置值:
        etls = findViewById(R.id.editTextConfigWordT5557);
        strls = etls.getText().toString().trim();
        if(strls.length() < 8)
        {
            tv.setText("配置值输入长度不足8位");
            return;
        }
        for (i = 0; i < 4; i++) {
            mypiccdata[i] = (byte)Integer.parseInt(strls.substring(i*2,i*2+2),16);//只有用Integer.parseInt才能杜绝大于128时的错误
        }

        status = ouridr.t5557init(myctrlword,mypiccserial,oldpicckey,mypiccdata,newpicckey);
        if(status == 0) {
            strls = "卡号[";
            strls += String.format("%02X%02X%02X%02X%02X%02X",mypiccserial[0],mypiccserial[1],mypiccserial[2],mypiccserial[3],mypiccserial[4],mypiccserial[5]);
            strls += "]";
            TextView tvls = findViewById(R.id.TextViewRetDataT5557);
            tvls.setText(strls);
            strls = "配置T5557卡成功";
            ouridr.beep(38);
        }
        else {
            strls=GetErrInf(status);
        }
        tv.setText(strls);
    }

    public void t5557to4100(View view){
        byte[] myuidbuf=new byte[7];
        byte[] oldpicckey=new byte[4];
        byte[] newpicckey=new byte[4];
        byte[] mypiccserial=new byte[6];
        byte myctrlword=RESETCARD;

        myuidbuf[0]=47;
        myuidbuf[1]=1;
        myuidbuf[2]=2;
        myuidbuf[3]=3;
        myuidbuf[4]=4;

        byte status=ouridr.t5557to4100(myctrlword,mypiccserial,oldpicckey,newpicckey,myuidbuf);
        if (status==0){
            ouridr.beep(38);

            tv.setText("T5557卡配置成ID卡成功!");
        }else{
            tv.setText("错误代码:"+Integer.toString(status));
        }
    }

    public String GetErrInf(byte errcode) {
        String dispstr="";
        switch(errcode){
            case 1:
                dispstr="错误代码:1,写入配置的值不正确,配置区或密码区可能已被锁定,请重新写入!";
                break;
            case 2:
                dispstr="错误代码:2,本卡尚未开启密码功能,函数myctrlword中无需加入NEEDKEY!";
                break;
            case 3:
                dispstr="错误代码:3,需要指定密码,函数myctrlword要加入NEEDKEY!";
                break;
            case 5:
                dispstr="错误代码:5,密码错误!";
                break;
            case 8:
                dispstr="错误代码:8,卡不在感应区 或 密码不正确,请重新拿开卡后再放到感应区!";
                break;
            case 23:
                dispstr="错误代码:23,发卡器未连接!";
                break;
            default:
                dispstr="未知错误,错误代码:"+Integer.toString(errcode);
                break;
        }
       return dispstr;
    }

}

源码下载:AndroidstudioRFIDNFC读写源码资源-CSDN文库

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

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

SD-WAN组网设计原则:灵活、安全、高效

在实现按需、灵活和安全的SD-WAN组网方案中&#xff0c;我们必须遵循一系列关键的设计原则&#xff0c;以确保网络的可靠性和效率。通过以下几点设计原则&#xff0c;SD-WAN能够满足企业对灵活性、安全性和高效性的迫切需求。 灵活的Overlay网络互联 SD-WAN通过IP地址在站点之间…

linux基础学习(2):磁盘管理、分区、格式化

1.一些基本概念 一块磁盘从加入到可使用&#xff0c;需要经过3个阶段&#xff1a;分区-格式化-挂载。 1.1分区方式 linux有2种分区方式&#xff1a; &#xff08;1&#xff09;mbr&#xff1a;最大支持2.1T硬盘&#xff0c;最多支持4个分区。这4个分区可以全部为主分区&…

(设置非自定义Bean)学习Spring的第六天

一 . 获取Bean的方法详解 , 如下图 : 二 . Spring配置非自定义bean----DruidDatasource 我们举个例子 : 配置Druid数据源交由Spring管理 首先导入在pom文件Druid坐标 然后考虑 : 被配置的Bean的实例化方式是什么 : 无参构造 被配置的Bena是否要注入必要属性 : 四个基本信息…

防火墙技术

防火墙&#xff08;英语&#xff1a;Firewall&#xff09;技术是通过有机结合各类用于安全管理与筛选的软件和硬件设备&#xff0c;帮助计算机网络于其内、外网之间构建一道相对隔绝的保护屏障&#xff0c;以保护用户资料与信息安全性的一种技术。 防火墙技术的功能主要在于及…

查找局域网树莓派raspberry的mac地址和ip

依赖python库&#xff1a; pip install socket pip install scapy运行代码&#xff1a; import socket from scapy.layers.l2 import ARP, Ether, srpdef get_hostname(ip_address):try:return socket.gethostbyaddr(ip_address)[0]except socket.herror:# 未能解析主机名ret…

ARP相关

ARP报文格式&#xff1a; 目的以太网地址&#xff0c;48bit&#xff0c;发送ARP请求时&#xff0c;目的以太网地址为广播MAC地址&#xff0c;即0xFF.FF.FF.FF.FF.FF。 源以太网地址&#xff0c;48bit。 帧类型&#xff0c;对于ARP请求或者应答&#xff0c;该字段的值都为0x08…

iOS原生应用屏幕适配完整流程

1. 已iPhone 11 布局为设计布局,其他机型已这个来适配 2.变量与控件对应关系 txtViewer: txtAccount txtpwd seg btnOk 3.适配方法实现: //iOS屏幕适配 -(vo

设计PCB阻抗

https://zhuanlan.zhihu.com/p/589924395 1. 原理图设计 电路板的设计始于设计工程师设计电路原理图。 1.1, 工程师必须在原理图中指定受控阻抗信号&#xff0c;并将特定网络分类为差分对&#xff08;1002、902或852&#xff09;或单端网络&#xff08;402、502、552、602或75…

期末python实验一,二作业-对象编程【仅供参考】

目录 实验一西游游戏-对象 1&#xff0c;选择角色后&#xff0c;角色不能改 2&#xff0c;选择角色后&#xff0c;角色可以改 实验二猜拳游戏-对象 实验一西游游戏-对象 老师给的题目材料&#xff1a; 第一步&#xff1a;系统登录 失败时允许重复输入三次&#xff01; 第二…

设计 Mint.com

1. 梳理 User Case 和 约束 Use cases 作用域内的Use Case User 连接到 financial accountService 从 Account 中提取 transactions 日常 Update整理 transaction 所有的手动目录由 User 覆盖没有自动化的重排机制 - 通过目录分析月消费 Service 推荐 budget 允许 user 去…

小封装高稳定性振荡器 Sg2520egn / sg2520vgn, sg2520ehn / sg2520vhn

描述 随着物联网和ADAS等5G应用的实施&#xff0c;数据流量不断增长&#xff0c;网络基础设施变得比以往任何时候都更加重要。IT供应商一直在快速建设数据中心&#xff0c;并且对安装在数据中心内部/内部的光模块有很大的需求。此应用需要具有“小”&#xff0c;“低抖动”和“…

Redis分布式锁存在的问题以及解决方式

☆* o(≧▽≦)o *☆嗨~我是小奥&#x1f379; &#x1f4c4;&#x1f4c4;&#x1f4c4;个人博客&#xff1a;小奥的博客 &#x1f4c4;&#x1f4c4;&#x1f4c4;CSDN&#xff1a;个人CSDN &#x1f4d9;&#x1f4d9;&#x1f4d9;Github&#xff1a;传送门 &#x1f4c5;&a…

【前沿技术杂谈:智能对话的未来】深入比较ChatGPT与文心一言

【前沿技术杂谈&#xff1a;智能对话的未来】深入比较ChatGPT与文心一言 引言主体智能回复语言准确性知识库丰富度 深入分析&#xff1a;ChatGPT与文心一言的技术对比技术架构和算法数据处理和隐私用户界面和体验 应用场景分析未来展望技术进步的趋势潜在的挑战对社会的影响 结…

2018年认证杯SPSSPRO杯数学建模C题(第二阶段)机械零件加工过程中的位置识别全过程文档及程序

2018年认证杯SPSSPRO杯数学建模 基于轮廓提取与图像配准的零件定位问题研究 C题 机械零件加工过程中的位置识别 原题再现&#xff1a; 在工业制造自动生产线中&#xff0c;在装夹、包装等工序中需要根据图像处理利用计算机自动智能识别零件位置&#xff0c;并由机械手将零件…

JDBC编程详细教程与示例源码

版权声明 本文原创作者&#xff1a;谷哥的小弟作者博客地址&#xff1a;http://blog.csdn.net/lfdfhl JDBC概述 为了在Java语言中提供对数据库访问的支持&#xff0c;Sun公司于1996年提供了一套访问数据库的标准Java类库JDBC。JDBC的全称是Java数据库连接(Java Database Conn…

怎么样的布局是符合可制造性的PCB布局?

满足可制造性、可装配性、可维修性要求&#xff0c;方便调试的时候于检测和返修&#xff0c;能够方便的拆卸器件&#xff1a; 1&#xff09;极性器件的方向不要超过2种&#xff0c;最好都进行统一方向等要求&#xff0c;如图1-1所示&#xff1b; 图1-1 极性器件方向统一摆放 2…

CVE重要通用漏洞复现java php

在进行漏洞复现之前我们需要在linux虚拟机上进行docker的安装 我不喜欢win上安因为不知道为什么总是和我的vmware冲突 然后我的kali内核版本太低 我需要重新安装一个新的linux 并且配置网络 我相信这会话费我不少时间 查看版本 uname -a 需要5.5或以上的版本 看错了浪…

免费开源线上信息技术电子云书屋

1 概述 知命耳顺之际&#xff0c;时逢甲辰龙年到来&#xff0c;汇集半生研发积累和教育培训沉淀&#xff0c;以分布微服软件框架为基础&#xff0c;特别推出“线上电子云书屋”&#xff0c;陆续呈现编著的十余部信息技术教材和一些典型的软件架构平台&#xff0c;供给免费开源…

JVM-透彻理解字节码以及指令

一、字节码与指令概述 package ch13_bytecode;public class HelloWorld {public static void main(String[] args) {System.out.println("hello world");} }生成字节码&#xff1a; cafe babe 0000 0031 0022 0a00 0600 1409 0015 0016 0800 170a 0018 0019 0700 1a…

Docker(二)安装指南

作者主页&#xff1a; 正函数的个人主页 文章收录专栏&#xff1a; Docker 欢迎大家点赞 &#x1f44d; 收藏 ⭐ 加关注哦&#xff01; 安装 Docker Docker 分为 stable test 和 nightly 三个更新频道。 官方网站上有各种环境下的 安装指南&#xff0c;这里主要介绍 Docker 在…