Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. final RawOutputStream rawOut = new RawOutputStream(rawThing);
  2. try {
  3. final DecoratedOutputStream out = new DecoratedOutputStream(rawOut);
  4. // ... stuff with out within ...
  5. out.flush();
  6. } finally {
  7. rawOut.close();
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement