Hi,
I've this code:
InputStream is = socket.getInputStream();
int b;
while ((b = is.read()) != -1)
{
System.out.println(b);
}
A byte its range is -128
until +127
.
But one of the printed bytes is 210
.
Is this the result of converting the read byte
to an int
?
(So that the negatif byte
becomes a positif int
)
If so, can I do the same (with an OutputStream
) by converting an int
to a byte
?
Thanks,
Martijn