ต่อไปนี้เป็นรหัสเพื่อใช้งาน Checksum โดยใช้ Java -
ตัวอย่าง
import java.util.*; public class Demo{ public static void main(String args[]){ Scanner my_scan = new Scanner(System.in); System.out.println("Enter the input string "); String my_in = my_scan.next(); int my_checksum = generate_checksum(my_in); System.out.println("The checksum that has been generated is " + Integer.toHexString(my_checksum)); System.out.println("Enter the data that needs to be sent to the receiver "); my_in = my_scan.next(); System.out.println("Enter the checksum that needs to be sent to the receiver "); my_checksum = Integer.parseInt((my_scan.next()), 16); receive(my_in, my_checksum); my_scan.close(); } static int generate_checksum(String s){ String my_hex_val = new String(); int x, i, my_checksum = 0; for (i = 0; i < s.length() - 2; i = i + 2){ x = (int) (s.charAt(i)); my_hex_val = Integer.toHexString(x); x = (int) (s.charAt(i + 1)); my_hex_val = my_hex_val + Integer.toHexString(x); System.out.println(s.charAt(i) + "" + s.charAt(i + 1) + " : " + my_hex_val); x = Integer.parseInt(my_hex_val, 16); my_checksum += x; } if (s.length() % 2 == 0){ x = (int) (s.charAt(i)); my_hex_val = Integer.toHexString(x); x = (int) (s.charAt(i + 1)); my_hex_val = my_hex_val + Integer.toHexString(x); System.out.println(s.charAt(i) + "" + s.charAt(i + 1) + " : "+ my_hex_val); x = Integer.parseInt(my_hex_val, 16); } else { x = (int) (s.charAt(i)); my_hex_val = "00" + Integer.toHexString(x); x = Integer.parseInt(my_hex_val, 16); System.out.println(s.charAt(i) + " : " + my_hex_val); } my_checksum += x; my_hex_val = Integer.toHexString(my_checksum); if (my_hex_val.length() > 4){ int carry = Integer.parseInt(("" + my_hex_val.charAt(0)), 16); my_hex_val = my_hex_val.substring(1, 5); my_checksum = Integer.parseInt(my_hex_val, 16); my_checksum += carry; } my_checksum = generate_complement(my_checksum); return my_checksum; } static void receive(String s, int my_checksum){ int gen_checksum = generate_checksum(s); gen_checksum = generate_complement(gen_checksum); int syndrome = gen_checksum + my_checksum; syndrome = generate_complement(syndrome); System.out.println("The value of syndrome is " + Integer.toHexString(syndrome)); if (syndrome == 0){ System.out.println("Data has been received without any errors"); } else { System.out.println("An error was encountered in the received data"); } } static int generate_complement(int my_checksum){ my_checksum = Integer.parseInt("FFFF", 16) - my_checksum; return my_checksum; } }
ปัจจัยการผลิต
sample sample b2c8
ผลลัพธ์
Enter the input string sa : 7361 mp : 6d70 le : 6c65 The checksum that has been generated is b2c8 Enter the data that needs to be sent to the receiver Enter the checksum that needs to be sent to the receiver sa : 7361 mp : 6d70 le : 6c65 The value of syndrome is 0 Data has been received without any errors
คลาสชื่อ Demo มีฟังก์ชันหลัก ที่นี่ อินสแตนซ์ของ Scanner ถูกกำหนดและสตริงอินพุตถูกกำหนดไว้
ฟังก์ชัน 'generate_checksum' ถูกกำหนดไว้ซึ่งจะสร้างอินสแตนซ์สตริงใหม่และเริ่มต้นการตรวจสอบเป็น 0 สตริงที่ส่งผ่านไปยังฟังก์ชันนี้เมื่อมีการทำซ้ำพารามิเตอร์ และแปลงเป็นค่าเลขฐานสิบหก ทุกอักขระจะถูกวนซ้ำและแปลงเป็นค่าจำนวนเต็ม จากนั้นจะถูกแปลงเป็นค่าฐานสิบหก จากนั้น ค่าเลขฐานสิบหกจะเพิ่มให้กับค่าเลขฐานสิบหกของอักขระตัวถัดไป
หากความยาวของสตริงเท่ากัน ทุกอักขระจะถูกวนซ้ำและแปลงเป็นค่าจำนวนเต็ม จากนั้นจะถูกแปลงเป็นค่าฐานสิบหก จากนั้น ค่าเลขฐานสิบหกจะเพิ่มให้กับค่าเลขฐานสิบหกของอักขระตัวถัดไป มิฉะนั้น จะต่อด้วย 00
ฟังก์ชัน 'รับ' เรียกฟังก์ชัน 'generate_checksum' และส่งผ่านผลลัพธ์ จากนั้นจะเพิ่มลงในค่าเช็คซัมเดิม (ซึ่งเดิมคือ 0) จากนั้นจะถูกแปลงเป็นค่าฐานสิบหก หากความยาวนี้มากกว่า 4 ค่า 'carry' จะถูกสร้างขึ้น เช็คซัมเดิมจะถูกแยกวิเคราะห์และเพิ่มมูลค่า 'carry' เมื่อข้อมูลโค้ดนี้ทำงาน ฟังก์ชัน 'generate_complement' จะถูกเรียกบนค่าเช็คซัม ฟังก์ชัน 'generate_complement' จะลบค่าเช็คซัมจาก 'FFFF'-16