I am in the process of Writing ISBN values to UHF RFID cards , So that I need to scan the barcode of the book and to receive the ISBN and then I need to convert that ISBN of(13 digit integer) to hexadecimal value to write to the UHF RFID tags.
As of now I can able to Scan the barcode and receive the ISBN number, but I need some help on converting ISBN to hexadecimal value for writing to the UHF RFID tags in Java.
You can use Long.valueOf(isbnString, 16) . Create a method toHex and if input string contains
"-"
then replace them with empty String , after that create and return the number. Please note thatLong.valueOf
can throwNumberFormatException
E.g.