I've managed to learn how to read/write from/to a .txt file from an Arraylist in Java. But I'm struggling to do so from binary.
The Arraylist would be in the format of: String,String,String,String,String,String,String,String.
I was thinking of doing a .split() by the binary equivalent of a comma (00101100), but I'm completely stuck. Can anyone tell me the basic imports needed to read a binary file and then add it to the Arraylist. Thank you :)
my idea might be completely wrong so please suggest better methods :)
Lets call the Arraylist SD. Just because that's how I've set it up. Any more information please just comment!