public class ClassA {
public void makeStream (InputStream iStream) {
DataInputStream stream = new DataInputStream(iStream);
try {
stream.read();
}
catch (IOException e) {
}
finally {
if (stream != null) {
try {
stream.close();
}
catch(IOException e) {
}
}
}
}
}
|
|