Reputation: 10994
Is there charset which I could use to save 8bit data? I mean everything which is binary, without changing it content in string?
Upvotes: 1
Views: 274
Reputation: 15533
The package java.io defines two kinds of classes to save data:
Just use the class from XXXOutputStream family that suits your needs. You don't need a Charset for that.
Upvotes: 4