���� @param streamList ������
(List<? extends Closeable> streamList)
| 272 | * @param streamList ������ |
| 273 | */ |
| 274 | private static void closeStream(List<? extends Closeable> streamList) { |
| 275 | if (null != streamList) { |
| 276 | for (Closeable stream : streamList) { |
| 277 | try { |
| 278 | stream.close(); |
| 279 | } catch (IOException e) { |
| 280 | e.printStackTrace(); |
| 281 | } |
| 282 | } |
| 283 | } |
| 284 | } |
| 285 | |
| 286 | /** |
| 287 | * ��ȡ���������� |