是否可以使用try-with-resources
Java 7 中的 new 语句同时创建ObjectOutputStream
and ,并在创建输入流之前ObjectInputStream
刷新输出流?现在,我正在使用旧样式:
ObjectOutputStream ostream = null;
ObjectInputStream istream = null;
try {
ostream = new ObjectOutputStream(this.socket.getOutputStream());
ostream.flush();
istream = new ObjectInputStream(this.socket.getInputStream());
// ...
}
catch (Exception e) {
e.printStackTrace();
}
finally {
// Close the streams.
}
我想知道是否有更好的方法来使用 Java 7 中的新样式创建和刷新流。谢谢!