/src/java/opentss/StreamWriter.java

http://open-tss.googlecode.com/ · Java · 82 lines · 45 code · 17 blank · 20 comment · 0 complexity · 75877c49727871f5766d70fc7c992097 MD5 · raw file

  1. /**
  2. * Copyright 2002-2006 the original author or authors.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package opentss;
  17. import java.io.IOException;
  18. import java.io.OutputStream;
  19. /**
  20. * Writer on top of stream.
  21. *
  22. * @author <a href="mailto:max.h.chen@hotmail.com">Max Chen</a>
  23. */
  24. public class StreamWriter implements Writer {
  25. private OutputStream output;
  26. public StreamWriter(OutputStream output) {
  27. this.output = output;
  28. }
  29. public void writeByte(byte b) throws IOException {
  30. StreamUtil.writeByte(output, b);
  31. }
  32. public void writeBoolean(boolean b) throws IOException {
  33. StreamUtil.writeBoolean(output, b);
  34. }
  35. public void writeChar(char c) throws IOException {
  36. StreamUtil.writeChar(output, c);
  37. }
  38. public void writeShort(short s) throws IOException {
  39. StreamUtil.writeShort(output, s);
  40. }
  41. public void writeInt(int i) throws IOException {
  42. StreamUtil.writeInt(output, i);
  43. }
  44. public void writeLong(long l) throws IOException {
  45. StreamUtil.writeLong(output, l);
  46. }
  47. public void writeFloat(float f) throws IOException {
  48. StreamUtil.writeFloat(output, f);
  49. }
  50. public void writeDouble(double d) throws IOException {
  51. StreamUtil.writeDouble(output, d);
  52. }
  53. public void writeUTF(String str) throws IOException {
  54. StreamUtil.writeUTF(output, str);
  55. }
  56. public void write(byte[] bytes, int offset, int length) throws IOException {
  57. output.write(bytes, offset, length);
  58. }
  59. public void flush() throws IOException {
  60. output.flush();
  61. }
  62. public void close() {
  63. StreamUtil.close(output);
  64. }
  65. }