javax.servlet.ServletOutputStream翻译

 
JavaTM 2 Platform
Ent. Ed. v1.4

javax.servlet
Class ServletOutputStream

java.lang.Object
  extended byjava.io.OutputStream
      extended byjavax.servlet.ServletOutputStream

public abstract class ServletOutputStream extends OutputStream

Provides an output stream for sending binary data to the client. A ServletOutputStream object is normally retrieved via the ServletResponse.getOutputStream() method. 提供了一种输出流用于向客户端发送二进制数据。ServletOutputStream对象通常通过ServletResponse.getOutputStream()方法获取。

This is an abstract class that the servlet container implements. Subclasses of this class must implement the java.io.OutputStream.write(int) method. 这是一个抽象类,由servlet容器实现。该类的子类必须实现java.io.OutputStream.write(int)方法。

Version:
$Version$
Author:
Various
See Also:
ServletResponse

Constructor Summary
protected ServletOutputStream()
          Does nothing, because this is an abstract class. 不做任何事,因为这是一个抽象类。
 
Method Summary
 voidprint(boolean b)
          Writes a boolean value to the client, with no carriage return-line feed (CRLF) character at the end. 向客户端写入一个boolean值,结尾不带回车符。
 voidprint(char c)
          Writes a character to the client, with no carriage return-line feed (CRLF) at the end. 向客户端写入一个字符,结尾不带回车符。
 voidprint(double d)
          Writes a double value to the client, with no carriage return-line feed (CRLF) at the end. 向客户端写入一个double值,结尾不带回车符。
 voidprint(float f)
          Writes a float value to the client, with no carriage return-line feed (CRLF) at the end. 向客户端写入一个float值,结尾不带回车符。
 voidprint(int i)
          Writes an int to the client, with no carriage return-line feed (CRLF) at the end. 向客户端写入一个int值,结尾不带回车符。
 voidprint(long l)
          Writes a long value to the client, with no carriage return-line feed (CRLF) at the end. 向客户端写入一个long值,结尾不带回车符。
 voidprint(String s)
          Writes a String to the client, without a carriage return-line feed (CRLF) character at the end. 向客户端写入一个String,结尾不带回车符。
 voidprintln()
          Writes a carriage return-line feed (CRLF) to the client. 向客户端写入一回车符。
 voidprintln(boolean b)
          Writes a boolean value to the client, followed by a carriage return-line feed (CRLF). 向客户端写入一个boolean值,后跟一回车符。
 voidprintln(char c)
          Writes a character to the client, followed by a carriage return-line feed (CRLF). 向客户端写入一个字符,后跟一回车符。
 voidprintln(double d)
          Writes a double value to the client, followed by a carriage return-line feed (CRLF). 向客户端写入一个double值,后跟一回车符。
 voidprintln(float f)
          Writes a float value to the client, followed by a carriage return-line feed (CRLF). 向客户端写入一个float值,后跟一回车符。
 voidprintln(int i)
          Writes an int to the client, followed by a carriage return-line feed (CRLF) character. 向客户端写入一个int值,后跟一回车符。
 voidprintln(long l)
          Writes a long value to the client, followed by a carriage return-line feed (CRLF). 向客户端写入一个long值,后跟一回车符。
 voidprintln(String s)
          Writes a String to the client, followed by a carriage return-line feed (CRLF). 向客户端写入一个String,后跟一回车符。
 
Methods inherited from class java.io.OutputStream
close, flush, write, write, write
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ServletOutputStream

protected ServletOutputStream()
Does nothing, because this is an abstract class. 不做任何事,因为这是一个抽象类。

Method Detail

print

public void print(String s)
           throws IOException
Writes a String to the client, without a carriage return-line feed (CRLF) character at the end. 向客户端写入一个String,结尾不带回车符。

Parameters:
s - the String to send to the client 写入客户端的String
Throws:
IOException - if an input or output exception occurred 如果发生输入输出异常时抛出

print

public void print(boolean b)
           throws IOException
Writes a boolean value to the client, with no carriage return-line feed (CRLF) character at the end. 向客户端写入一个boolean值,结尾不带回车符。

Parameters:
b - the boolean value to send to the client 写入客户端的boolean值
Throws:
IOException - if an input or output exception occurred 如果发生输入输出异常时抛出

print

public void print(char c)
           throws IOException
Writes a character to the client, with no carriage return-line feed (CRLF) at the end. 向客户端写入一个字符,结尾不带回车符。

Parameters:
c - the character to send to the client 写入客户端的字符
Throws:
IOException - if an input or output exception occurred 如果发生输入输出异常时抛出

print

public void print(int i)
           throws IOException
Writes an int to the client, with no carriage return-line feed (CRLF) at the end. 向客户端写入一个int值,结尾不带回车符。

Parameters:
i - the int to send to the client 写入客户端的int值
Throws:
IOException - if an input or output exception occurred 如果发生输入输出异常时抛出

print

public void print(long l)
           throws IOException
Writes a long value to the client, with no carriage return-line feed (CRLF) at the end. 向客户端写入一个long值,结尾不带回车符。

Parameters:
l - the long value to send to the client 写入客户端的long值
Throws:
IOException - if an input or output exception occurred 如果发生输入输出异常时抛出

print

public void print(float f)
           throws IOException
Writes a float value to the client, with no carriage return-line feed (CRLF) at the end. 向客户端写入一个float值,结尾不带回车符。

Parameters:
f - the float value to send to the client 写入客户端的float值
Throws:
IOException - if an input or output exception occurred 如果发生输入输出异常时抛出

print

public void print(double d)
           throws IOException
Writes a double value to the client, with no carriage return-line feed (CRLF) at the end. 向客户端写入一个double值,结尾不带回车符。

Parameters:
d - the double value to send to the client 写入客户端的double值
Throws:
IOException - if an input or output exception occurred 如果发生输入输出异常时抛出

println

public void println()
             throws IOException
Writes a carriage return-line feed (CRLF) to the client. 向客户端写入一回车符。

Throws:
IOException - if an input or output exception occurred 如果发生输入输出异常时抛出

println

public void println(String s)
             throws IOException
Writes a String to the client, followed by a carriage return-line feed (CRLF). 向客户端写入一个String,后跟一回车符。

Parameters:
s - the String to write to the client 写入客户端的String
Throws:
IOException - if an input or output exception occurred 如果发生输入输出异常时抛出

println

public void println(boolean b)
             throws IOException
Writes a boolean value to the client, followed by a carriage return-line feed (CRLF). 向客户端写入一个boolean值,后跟一回车符。

Parameters:
b - the boolean value to write to the client 写入客户端的boolean值
Throws:
IOException - if an input or output exception occurred 如果发生输入输出异常时抛出

println

public void println(char c)
             throws IOException
Writes a character to the client, followed by a carriage return-line feed (CRLF). 向客户端写入一个字符,后跟一回车符。

Parameters:
c - the character to write to the client 写入客户端的字符
Throws:
IOException - if an input or output exception occurred 如果发生输入输出异常时抛出

println

public void println(int i)
             throws IOException
Writes an int to the client, followed by a carriage return-line feed (CRLF) character. 向客户端写入一个int值,后跟一回车符。

Parameters:
i - the int to write to the client 写入客户端的int值
Throws:
IOException - if an input or output exception occurred 如果发生输入输出异常时抛出

println

public void println(long l)
             throws IOException
Writes a long value to the client, followed by a carriage return-line feed (CRLF). 向客户端写入一个long值,后跟一回车符。

Parameters:
l - the long value to write to the client 写入客户端的long值
Throws:
IOException - if an input or output exception occurred 如果发生输入输出异常时抛出

println

public void println(float f)
             throws IOException
Writes a float value to the client, followed by a carriage return-line feed (CRLF). 向客户端写入一个float值,后跟一回车符。

Parameters:
f - the float value to write to the client 写入客户端的float值
Throws:
IOException - if an input or output exception occurred 如果发生输入输出异常时抛出

println

public void println(double d)
             throws IOException
Writes a double value to the client, followed by a carriage return-line feed (CRLF). 向客户端写入一个double值,后跟一回车符。

Parameters:
d - the double value to write to the client 写入客户端的double值
Throws:
IOException - if an input or output exception occurred 如果发生输入输出异常时抛出

JavaTM 2 Platform
Ent. Ed. v1.4

Submit a bug or feature

Copyright 2003 Sun Microsystems, Inc. All rights reserved.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值