开发者

Can I use both PrintWriter and BufferedOutputStream on the same outputstream?

开发者 https://www.devze.com 2023-04-13 09:57 出处:网络
Can I use both PrintWriter and BufferedOutputStream on the same outputstream? The situation is this: I\'m having a SSLSocket program and I want to be able to transfer both Strings and byte [] over t

Can I use both PrintWriter and BufferedOutputStream on the same outputstream?

The situation is this:

I'm having a SSLSocket program and I want to be able to transfer both Strings and byte [] over the socket at different points in time easily without ha开发者_运维百科ving to cast byte [] to string etc, however, PrintWriter only allows me to transfer Strings and BufferedOutputStream only allows me to transfer bytes.


PrintWriter is just a wrapper around original OutputStream. BufferedOutputStream is a wrapper around OutputStream too. So you can use both. Why not?

Single thing you should to consider - you should be carefull working with both stream and writer in multithread environment because you can get unpredictable result.

The java.io.Writer class (super class for PrintWriter) use itself as a lock object. So you can also probably use it to synchronize multiple threads.


That's ok, but you have to make sure to flush them in the right order. You can also use the PrintWriter on top of the BufferedOutputStream.


I would use a DataOutputStream (possibly wrapping a BufferedOutputStream). It allows you to transfer byte[], int, double String and many other types. To send the byte[] you may want to send the length first as a int or short.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号