Currently I have a 8 bit binary string and I want to shift it left and get a 10bit binary number from it. (ie 0111001010)
 String[] channels = datArray.get(n).split(" ");
 byte[] RI = channels[m+1].getBytes();
 String s = (Integer.toBinaryString(Integer.parseInt(channels[m+1])));
Example Values:
RI is equal to: [B@4223b758
S is equal to: 1100101
Any help is much appreciated.
 
     
     
     
    