public class ClassA {
public void makeStream (OutputStream oStream) {
BufferedOutputStream stream = new BufferedOutputStream(oStream);
try {
stream.write(7);
}
catch (IOException e) {
}
finally {
if (stream != null) {
try {
stream.close();
}
catch(IOException e) {
}
}
}
}
}
|
|