org.seasar.portlet.wrapper
クラス ServletOutputStreamWrapper

java.lang.Object
  上位を拡張 java.io.OutputStream
      上位を拡張 javax.servlet.ServletOutputStream
          上位を拡張 org.seasar.portlet.wrapper.ServletOutputStreamWrapper
すべての実装されたインタフェース:
java.io.Closeable, java.io.Flushable

public class ServletOutputStreamWrapper
extends javax.servlet.ServletOutputStream

This class is a dummy ServletOutputStream.

作成者:
Shinsuke Sugaya

コンストラクタの概要
ServletOutputStreamWrapper(java.io.OutputStream outputStream)
           
 
メソッドの概要
 void close()
           
 boolean equals(java.lang.Object obj)
           
 void flush()
           
 int hashCode()
           
 void print(boolean b)
          Writes a boolean value to the client, with no carriage return-line feed (CRLF) character at the end.
 void print(char c)
          Writes a character to the client, with no carriage return-line feed (CRLF) at the end.
 void print(double d)
          Writes a double value to the client, with no carriage return-line feed (CRLF) at the end.
 void print(float f)
          Writes a float value to the client, with no carriage return-line feed (CRLF) at the end.
 void print(int i)
          Writes an int to the client, with no carriage return-line feed (CRLF) at the end.
 void print(long l)
          Writes a long value to the client, with no carriage return-line feed (CRLF) at the end.
 void print(java.lang.String s)
          Writes a String to the client, without a carriage return-line feed (CRLF) character at the end.
 void println()
          Writes a carriage return-line feed (CRLF) to the client.
 void println(boolean b)
          Writes a boolean value to the client, followed by a carriage return-line feed (CRLF).
 void println(char c)
          Writes a character to the client, followed by a carriage return-line feed (CRLF).
 void println(double d)
          Writes a double value to the client, followed by a carriage return-line feed (CRLF).
 void println(float f)
          Writes a float value to the client, followed by a carriage return-line feed (CRLF).
 void println(int i)
          Writes an int to the client, followed by a carriage return-line feed (CRLF) character.
 void println(long l)
          Writes a long value to the client, followed by a carriage return-line feed (CRLF).
 void println(java.lang.String s)
          Writes a String to the client, followed by a carriage return-line feed (CRLF).
 java.lang.String toString()
           
 void write(byte[] b)
           
 void write(byte[] b, int off, int len)
           
 void write(int b)
           
 
クラス java.lang.Object から継承されたメソッド
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

コンストラクタの詳細

ServletOutputStreamWrapper

public ServletOutputStreamWrapper(java.io.OutputStream outputStream)
メソッドの詳細

print

public void print(java.lang.String s)
           throws java.io.IOException
Writes a String to the client, without a carriage return-line feed (CRLF) character at the end.

オーバーライド:
クラス javax.servlet.ServletOutputStream 内の print
パラメータ:
s - the String to send to the client
例外:
java.io.IOException - if an input or output exception occurred

print

public void print(boolean b)
           throws java.io.IOException
Writes a boolean value to the client, with no carriage return-line feed (CRLF) character at the end.

オーバーライド:
クラス javax.servlet.ServletOutputStream 内の print
パラメータ:
b - the boolean value to send to the client
例外:
java.io.IOException - if an input or output exception occurred

print

public void print(char c)
           throws java.io.IOException
Writes a character to the client, with no carriage return-line feed (CRLF) at the end.

オーバーライド:
クラス javax.servlet.ServletOutputStream 内の print
パラメータ:
c - the character to send to the client
例外:
java.io.IOException - if an input or output exception occurred

print

public void print(int i)
           throws java.io.IOException
Writes an int to the client, with no carriage return-line feed (CRLF) at the end.

オーバーライド:
クラス javax.servlet.ServletOutputStream 内の print
パラメータ:
i - the int to send to the client
例外:
java.io.IOException - if an input or output exception occurred

print

public void print(long l)
           throws java.io.IOException
Writes a long value to the client, with no carriage return-line feed (CRLF) at the end.

オーバーライド:
クラス javax.servlet.ServletOutputStream 内の print
パラメータ:
l - the long value to send to the client
例外:
java.io.IOException - if an input or output exception occurred

print

public void print(float f)
           throws java.io.IOException
Writes a float value to the client, with no carriage return-line feed (CRLF) at the end.

オーバーライド:
クラス javax.servlet.ServletOutputStream 内の print
パラメータ:
f - the float value to send to the client
例外:
java.io.IOException - if an input or output exception occurred

print

public void print(double d)
           throws java.io.IOException
Writes a double value to the client, with no carriage return-line feed (CRLF) at the end.

オーバーライド:
クラス javax.servlet.ServletOutputStream 内の print
パラメータ:
d - the double value to send to the client
例外:
java.io.IOException - if an input or output exception occurred

println

public void println()
             throws java.io.IOException
Writes a carriage return-line feed (CRLF) to the client.

オーバーライド:
クラス javax.servlet.ServletOutputStream 内の println
例外:
java.io.IOException - if an input or output exception occurred

println

public void println(java.lang.String s)
             throws java.io.IOException
Writes a String to the client, followed by a carriage return-line feed (CRLF).

オーバーライド:
クラス javax.servlet.ServletOutputStream 内の println
パラメータ:
s - the String to write to the client
例外:
java.io.IOException - if an input or output exception occurred

println

public void println(boolean b)
             throws java.io.IOException
Writes a boolean value to the client, followed by a carriage return-line feed (CRLF).

オーバーライド:
クラス javax.servlet.ServletOutputStream 内の println
パラメータ:
b - the boolean value to write to the client
例外:
java.io.IOException - if an input or output exception occurred

println

public void println(char c)
             throws java.io.IOException
Writes a character to the client, followed by a carriage return-line feed (CRLF).

オーバーライド:
クラス javax.servlet.ServletOutputStream 内の println
パラメータ:
c - the character to write to the client
例外:
java.io.IOException - if an input or output exception occurred

println

public void println(int i)
             throws java.io.IOException
Writes an int to the client, followed by a carriage return-line feed (CRLF) character.

オーバーライド:
クラス javax.servlet.ServletOutputStream 内の println
パラメータ:
i - the int to write to the client
例外:
java.io.IOException - if an input or output exception occurred

println

public void println(long l)
             throws java.io.IOException
Writes a long value to the client, followed by a carriage return-line feed (CRLF).

オーバーライド:
クラス javax.servlet.ServletOutputStream 内の println
パラメータ:
l - the long value to write to the client
例外:
java.io.IOException - if an input or output exception occurred

println

public void println(float f)
             throws java.io.IOException
Writes a float value to the client, followed by a carriage return-line feed (CRLF).

オーバーライド:
クラス javax.servlet.ServletOutputStream 内の println
パラメータ:
f - the float value to write to the client
例外:
java.io.IOException - if an input or output exception occurred

println

public void println(double d)
             throws java.io.IOException
Writes a double value to the client, followed by a carriage return-line feed (CRLF).

オーバーライド:
クラス javax.servlet.ServletOutputStream 内の println
パラメータ:
d - the double value to write to the client
例外:
java.io.IOException - if an input or output exception occurred

write

public void write(int b)
           throws java.io.IOException
定義:
クラス java.io.OutputStream 内の write
例外:
java.io.IOException

close

public void close()
           throws java.io.IOException
定義:
インタフェース java.io.Closeable 内の close
オーバーライド:
クラス java.io.OutputStream 内の close
例外:
java.io.IOException

equals

public boolean equals(java.lang.Object obj)
オーバーライド:
クラス java.lang.Object 内の equals

flush

public void flush()
           throws java.io.IOException
定義:
インタフェース java.io.Flushable 内の flush
オーバーライド:
クラス java.io.OutputStream 内の flush
例外:
java.io.IOException

hashCode

public int hashCode()
オーバーライド:
クラス java.lang.Object 内の hashCode

toString

public java.lang.String toString()
オーバーライド:
クラス java.lang.Object 内の toString

write

public void write(byte[] b,
                  int off,
                  int len)
           throws java.io.IOException
オーバーライド:
クラス java.io.OutputStream 内の write
例外:
java.io.IOException

write

public void write(byte[] b)
           throws java.io.IOException
オーバーライド:
クラス java.io.OutputStream 内の write
例外:
java.io.IOException


Copyright 2007 null. All Rights Reserved.