Hi Guys,
I have two problems in general. Please reply asap.
1. I have 128 bit
string value.. something like "100000000000000000001111111000000000000000011111100000000000000000000" upto 128 bit long, and I need to do left shift onto it. How would I do that? The problem is
java does not take any value which is this much long and if I try to divide this string and then do left shift, answer will be different.
2. Again, if I have a number like 10010, and if I apply left shift on it , it should give me answer like 00101 and not 100100. How would I do this ?
Thanks.
Codeeater