I have a csv string to bytes and i want to convert it in java byte array. Can anyone help me.
csv string
167, 27, 32, 195
The byte array should be like this
byte[0] should give me 167
byte[1] should give me 27
byte[2] should give me 32
byte[3] should give me 195