Hi! I wonder now, what is the difference between the two methods:
DataInputStream.skipBytes
and DataInputStream.skip
.
I am aware of the fact that skip
must come from InputStream
and skipBytes
from DataInput
, but still, is there any difference. You know, when using streams in J2ME, things get pretty tricky so I need to know!
Would the Input/DataInput Streams returned from the FileConnection
in JSR-75 be any different in handling than any other such streams?
Thanks!