[Kotlin]如何关闭stream

网友投稿 704 2022-09-02

[Kotlin]如何关闭stream

[Kotlin]如何关闭stream

众所周知,在java中,在finally代码块中可以使用close()关闭不使用的stream。当然kotlin也可以沿用这种操作,那是否有更简单的操作呢?答案是肯定的。

Closeable.use,只要继承了Closeable的类,都可以使用。通过看use的源码,可以看到最后会调用close方法。

因此只需要这样使用:

BufferedWriter(OutputStreamWriter(out)).use { it.write(inputText) }

BufferedWriter的流

参考:

1.https://stackoverflow.com/questions/46098105/is-there-a-way-to-open-and-close-a-stream-easily-at-kotlin/46098204?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa

2.https://stackoverflow.com/questions/26969800/try-with-resources-in-kotlin

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:PHP 数组和字符串互相转换实现方法(php是什么意思)
下一篇:[Spring Cloud]Eureka服务器配置
相关文章

 发表评论

暂时没有评论,来抢沙发吧~