posted 24 years ago
Given that a java.io.IOException might occur when calling the read() method of the BufferedInputStream, you can handle the exception by:
a) Listing a java.io.EOFException in a throws list.
b) Catch the java.lang.Exception using the throw statement.
c) Catch a java.io.EOFException using a try/catch clause.
d) Catch a java.lang.Exception using a try/catch 3
can any one help me about this problem.
Thanks in advance
Ketu