3738394041424344454647
else { int i=reader.read(); if (i!=-1) ch=(char)i; else throw new EofException("Koniec danych"); } if ((ch=='\t') || (ch=='\n') || (ch==' ')) throw new WhiteCharException(); else return ch;
6263646566676869707172
else { int i=reader.read(); if (i!=-1) ch=(char)i; else throw new EofException("Koniec danych"); } if (ch=='\n') throw new WhiteCharException(); else return ch;