I need to append character that 00000000 in byte in String builder. I need to put it into String Array and and read it again later. Example :
StringBuilder sBfNumRow = new StringBuilder();
sBfNumRow.append(""); //add char that 00000000 in byte
stObj [c] = sBfNumRow.toString(); // put into String array
stObj [c] .getBytes // read it again later.
Can someone help me to do this?