> Is there a easy way of multiplying and adding binary
> numbers i JAVA? Especially big binarynumbers.
What do you mean by binary number? An integer is a binary number. You've got a link to BigInteger in a post above. You can use the shiftLeft methods to shift in the binary numbers into a BigInteger, do whatever you want with it, and then use shiftRight to shift the binary number out again.