BufferedOutputStream vs ByteArrayOutputStream

后端 未结 3 1656
你的背包
你的背包 2021-02-07 02:15

Is there any advantage in wrapping a BufferedOutputStream around a ByteArrayOutputStream instead of just using the ByteArrrayOutputStream by itself?

相关标签:
3条回答
  • 2021-02-07 02:29

    Generally BufferedOutputStream wrapper is mostly used to avoid frequent disk or network writes. It can be much more expensive to separately write a lot of small pieces than make several rather large operations. The ByteArrayOutputStream operates in memory, so I think the wrapping is pointless.

    If you want to know the exact answer, try to create a simple performance-measuring application.

    0 讨论(0)
  • 2021-02-07 02:31

    Absolutely none. Though BufferedWriter and BufferedReader do offer extra functionality were you to be operating on strings.

    0 讨论(0)
  • 2021-02-07 02:31

    ByteArrayOutputStream is not recommended if you want to get high performance, but one interesting feature is to send a message with unknown length. For a better comprehension about how these two methods work, see http://java-performance.info/java-io-bytearrayoutputstream/.

    0 讨论(0)
提交回复
热议问题