Hi.
Are you talking about reading a String line this (like from a file say)
String s = new String ("1000100010001");
or
are you talking about binary files?
I was looking at this:
a) Converting to a string "Byte" object (the case of the String
"1001..."):
http://java.sun.com/j2se/1.4.1/docs/api/java/lang/Byte.html
b) reading a binary file:
http://java.sun.com/docs/books/tutorial/i18n/text/stream.html
Could you send some code to demonstrate your problem?
Shane
Evan Brown wrote:
> Anyone ever use Java to go from big String of binary, break up the
> string into certain byte sizes and convert them to primative datatypes?
> If so how did you do it cuz my code is ugly and I need some help.
>
> Evan Brown