자원이 하나인 경우
static String firstLineOfFile(String Path) throws IOException {
	BufferedReader br = new BufferedReader(new FileReader(path));
	try {
		return br.readLine();
	} finally {
		br.close();
	}
}
자원이 둘 이상인 경우 ⇒ 지저분!!
static void copy(String src, String dst) throws IOException {
	InputStream in = new FileInputStream(src);
	try {
		OutputStream out = new FileOutputStream(dst);
		try {
			byte[] buf = new byte[BUFFER_SIZE];
			int n;
			while ((n = in.read(buf) >= 0)
				out.write(buf, 0, n);
			} finally {
				out.close();
			}
		} finally {
			in.close();
		}
	}
이 구조를 사용하려면 해당 자원이 AutoCloseable 인터페이스를 구현해야함
자원이 하나인 경우
static String firstLineOfFile(String path) throws IOException {
	try (BufferedReader br = new BufferedReader(
					new FileReader(path))) {
			return br.readLine();
	}
}