try的括号中所有实现Closeable的类声明都可以写在里面,最常见的是流操作,socket操作等。括号中可以写多行语句,会自动关闭括号中的资源。
多行语句的示例:
try(
InputStream is = new FileInputStream("d:/teacher/youyuan.avi");
OutputStream os = new FileOutputStream("d:/student/shuangma.avi");
){
//balabala
}catch (IOException e) {
//xiaomoxian
}