![]() |
Method mark(int readlimit)
Return type: void
Member of: java.io.BufferedInputStream
[api documentation
] [ main menu] |
Examples of how the element is used (one line per example):
[add your own example]
| 1 | mark(0); |
| 2 | in.mark(0); |
| 3 | bis.mark(200); // mark start so that we can get back to it |
| 4 | in.mark(readlimit); |
| 5 | stream.mark(bufferSize); |
| 6 | in.mark(buffer.length); |
| 7 | bis.mark(cl); |