王朝网络
分享
 
 
 

javax.servlet.ServletOutputStream翻译

王朝java/jsp·作者佚名  2006-01-09
宽屏版  字体: |||超大  

[/url] [url=file:///F:/资料/文字资料/j2ee-1.4_doc/apidocs/overview-summary.html]Overview

Package

Class

Tree

Deprecated

Index

Help

JavaTM 2 Platform

Ent. Ed. v1.4

PREV CLASS NEXT CLASS

FRAMES NO FRAMES All Classes

SUMMARY: NESTED | FIELD | CONSTR | METHOD

DETAIL: FIELD | CONSTR | METHOD

javax.servlet

Class ServletOutputStreamjava.lang.Object

java.io.OutputStream

javax.servlet.ServletOutputStream

public abstract class ServletOutputStream extends OutputStreamProvides 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: ServletResponseConstructor Summary

protected

ServletOutputStream()

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

Method Summary

void

print(boolean b)

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

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. 向客户端写入一个double值,结尾不带回车符。

void

print(float f)

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

void

print(int i)

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

void

print(long l)

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

void

print(String s)

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

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). 向客户端写入一个boolean值,后跟一回车符。

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). 向客户端写入一个double值,后跟一回车符。

void

println(float f)

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

void

println(int i)

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

void

println(long l)

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

void

println(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

ServletOutputStreamprotected ServletOutputStream()

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

Method Detail

printpublic 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 如果发生输入输出异常时抛出printpublic 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 如果发生输入输出异常时抛出printpublic 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 如果发生输入输出异常时抛出printpublic 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 如果发生输入输出异常时抛出printpublic 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 如果发生输入输出异常时抛出printpublic 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 如果发生输入输出异常时抛出printpublic 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 如果发生输入输出异常时抛出printlnpublic void println()

throws IOException

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

Throws: IOException - if an input or output exception occurred 如果发生输入输出异常时抛出printlnpublic 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 如果发生输入输出异常时抛出printlnpublic 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 如果发生输入输出异常时抛出printlnpublic 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 如果发生输入输出异常时抛出printlnpublic 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 如果发生输入输出异常时抛出printlnpublic 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 如果发生输入输出异常时抛出printlnpublic 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 如果发生输入输出异常时抛出printlnpublic 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 如果发生输入输出异常时抛出[/url][url=file:///F:/资料/文字资料/j2ee-1.4_doc/apidocs/overview-summary.html]Overview

Package

Class

Tree

Deprecated

Index

Help

JavaTM 2 Platform

Ent. Ed. v1.4

PREV CLASS NEXT CLASS

FRAMES NO FRAMES All Classes

SUMMARY: NESTED | FIELD | CONSTR | METHOD

DETAIL: FIELD | CONSTR | METHOD

Submit a bug or feature Copyright 2003 Sun Microsystems, Inc. All rights reserved.

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
>>返回首页<<
推荐阅读
 
 
频道精选
 
静静地坐在废墟上,四周的荒凉一望无际,忽然觉得,凄凉也很美
© 2005- 王朝网络 版权所有