Easy way to write contents of a Java InputStream to an OutputStream

后端 未结 23 2741
粉色の甜心
粉色の甜心 2020-11-22 02:10

I was surprised to find today that I couldn\'t track down any simple way to write the contents of an InputStream to an OutputStream in Java. Obviou

23条回答
  •  萌比男神i
    2020-11-22 02:59

    Another possible candidate are the Guava I/O utilities:

    http://code.google.com/p/guava-libraries/wiki/IOExplained

    I thought I'd use these since Guava is already immensely useful in my project, rather than adding yet another library for one function.

提交回复
热议问题