tags:

views:

547

answers:

2

I have a binary String of "011001000010100100100010001000100100100100", how do I calculate CRC8? Thanks

+1  A: 

Use Jacksum.

From a Google search of CRC8 java.

mcandre
A: 

There are a lot of packages that contain this functionally built in. Of the top of my head I recall that jFLAC has it on their jflac.util.crc8 class.

dborba