- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
StringBuilder data = new StringBuilder();
/*int len = 0;
len = sock.getInputStream().read(recv);
data.setLength(0);
data.append(new String(recv, 0, len));
System.out.println("len="+len);*/ // ГАВНОООООО!!!!!
int i;
BufferedInputStream bf = new BufferedInputStream(sock.getInputStream());
while( (i=bf.read()) != -1 ) //заебок!
{
System.out.print((char)i);
}
Комментарии (0) RSS
Добавить комментарий