while (count != stringsize) {
                                        ch = is1.read();
                                        avibuf[0][count] = (byte) ch;
                                        count++;
                                        }

is1.read(avibuf[0],0,stringsize);

위랑 아래랑 차이점이 뭘까요 위는 잘되고 아래는 안됨유 ㅠㅠ

stringsize 만큼 inputstream에서 읽는건데 안됨유 ㅠㅠ

저 반복문때문에 연산시간이 오래걸리는거같음유 ㅠㅠ