@Test
public void zipString() {
String data="AAABBBaaaeeefssaaffss";
char[] dst = new char[data.length()];
data.getChars(0,data.length(),dst,0);
List<ByteInfo> infos = new ArrayList();
int j = 1;
for(int i = 0;i<dst.length;i += j ) {
j = 1;
ByteInfo info = new ByteInfo();