Prevent file channel from closing after reading xml file

前端 未结 2 1339
春和景丽
春和景丽 2020-12-22 05:08

For more detailed information regarding the motivation behind this goal (and my efforts to solve it) view my previous question. I decided to ask this as a new question entir

2条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-22 05:23

    Did you try the try-with-ressource statment? Even though, this is not the main purpose of this feature, maybe that does what you are looking for (in form of auto closing the ressources (your channel), but only when you leave the corresponding try-block)

    try (final Channel channel = new RandomAccessFile(new File(path), "rw").getChannel()) {
      // your stuff here
    } catch (IOException ex) {
      ex.printStackTrace();
    }
    

提交回复
热议问题