Поток не закрыт после Properties.load ()
public static void main(String[] args) throws IOException {
InputStream in = new FileInputStream(new File("abc.properties"));
new Properties().load(in);
System.out.println(in.read());
}
Вышеприведенный код возвращает «-1», поэтому поток не закрыт. В противном случае это должно было быть брошеноjava.io.IOException: Stream Closed