Web Hosting Web Hosting, web hosting, JSP, Servlets, Tomcat, website hosting, web site hosting
Web Hosting, web hosting, JSP, Servlets, Tomcat, website hosting, web site hosting
Web Hosting, web hosting, JSP, Servlets, Tomcat, website hosting, web site hosting

Alden Hosting provides professional, efficient, and reliable business-class Web hosting services to small- and medium-sized businesses.

WWW.

Call Us Toll-Free
(877) 256-0328

Outside USA
1 - (201) 505-0430

Web Hosting Welcome Web Hosting Web Hosting Plans Overview , Fund Raising, Fundraising, web hosting, website hosting, web site hosting Web Hosting Fund Raising, Fundraising, web hosting Web Hosting Resellers, web Hosting Web Hosting Web Design, web Hosting Web Hosting Extra Services,  web Hosting Web Hosting Traffic Booster, web hosting Web Hosting Traffic Booster, web hosting Web Hosting Technical Support,  web Hosting Web Hosting webmaster tips,  web Hosting Web Hosting 30 Day Money Back, web hosting Web Hosting Legal Notices for Web Hosting Web Hosting Glossary Computer Terms for web Hosting Web Hosting Contact Information - web hosting

Site Map

  Web Hosting Web Hosting Sign-Up   Web Hosting Fund Raising, Fundraising, web hosting, website hosting, web site hosting    Web Hosting Resellers web hosting, website hosting, web site hosting   Web Hosting EZ Site Control Panel for web hosting,website hosting, web site hosting
ServletOutputStream (Servlet API Documentation)

javax.servlet
Class ServletOutputStream

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

public abstract class ServletOutputStream
extends java.io.OutputStream

Provides an output stream for sending binary data to the client. A ServletOutputStream object is normally retrieved via the ServletResponse.getOutputStream() method.

This is an abstract class that the servlet container implements. Subclasses of this class must implement the java.io.OutputStream.write(int) method.

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

Constructor 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.
 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).
 
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(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.

Parameters:
s - the String to send to the client
Throws:
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.

Parameters:
b - the boolean value to send to the client
Throws:
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.

Parameters:
c - the character to send to the client
Throws:
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.

Parameters:
i - the int to send to the client
Throws:
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.

Parameters:
l - the long value to send to the client
Throws:
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.

Parameters:
f - the float value to send to the client
Throws:
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.

Parameters:
d - the double value to send to the client
Throws:
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.

Throws:
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).

Parameters:
s - the String to write to the client
Throws:
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).

Parameters:
b - the boolean value to write to the client
Throws:
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).

Parameters:
c - the character to write to the client
Throws:
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.

Parameters:
i - the int to write to the client
Throws:
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).

Parameters:
l - the long value to write to the client
Throws:
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).

Parameters:
f - the float value to write to the client
Throws:
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).

Parameters:
d - the double value to write to the client
Throws:
java.io.IOException - if an input or output exception occurred


Copyright © 1999-2002 The Apache Software Foundation. All Rights Reserved.
Web Hosting, web hosting, JSP, Servlets, Tomcat, website hosting, web site hosting
Add to My Yahoo!

XML icon

Add to Google

 

 

 

 

 

 

 

 

 

 

 

http://alden-servlet-Hosting.com
JSP at alden-servlet-Hosting.com
Servlets at alden-servlet-Hosting.com
Servlet at alden-servlet-Hosting.com
Tomcat at alden-servlet-Hosting.com
MySQL at alden-servlet-Hosting.com
Java at alden-servlet-Hosting.com
sFTP at alden-servlet-Hosting.com
http://alden-tomcat-Hosting.com
JSP at alden-tomcat-Hosting.com
Servlets at alden-tomcat-Hosting.com
Servlet at alden-tomcat-Hosting.com
Tomcat at alden-tomcat-Hosting.com
MySQL at alden-tomcat-Hosting.com
Java at alden-tomcat-Hosting.com
sFTP at alden-tomcat-Hosting.com
http://alden-sftp-Hosting.com
JSP at alden-sftp-Hosting.com
Servlets at alden-sftp-Hosting.com
Servlet at alden-sftp-Hosting.com
Tomcat at alden-sftp-Hosting.com
MySQL at alden-sftp-Hosting.com
Java at alden-sftp-Hosting.com
sFTP at alden-sftp-Hosting.com
http://alden-jsp-Hosting.com
JSP at alden-jsp-Hosting.com
Servlets at alden-jsp-Hosting.com
Servlet at alden-jsp-Hosting.com
Tomcat at alden-jsp-Hosting.com
MySQL at alden-jsp-Hosting.com
Java at alden-jsp-Hosting.com
sFTP at alden-jsp-Hosting.com
http://alden-java-Hosting.com
JSp at alden-java-Hosting.com
Servlets at alden-java-Hosting.com
Servlet at alden-java-Hosting.com
Tomcat at alden-java-Hosting.com
MySQL at alden-java-Hosting.com
Java at alden-java-Hosting.com
sFTP at alden-java-Hosting.com
JSP Servlets Tomcat mysql Java JSP Servlets Tomcat mysql Java JSP Servlets Tomcat mysql Java JSP Servlets Tomcat mysql Java JSP at JSP.aldenWEBhosting.com Servlets at servlets.aldenWEBhosting.com Tomcat at Tomcat.aldenWEBhosting.com mysql at mysql.aldenWEBhosting.com Java at Java.aldenWEBhosting.com Web Hosts Portal Web Links Web Links Web Hosting JSP Solutions Web Links JSP Solutions Web Hosting Servlets Solutions Web Links Servlets Solutions Web Hosting Web Links Web Links . .
.
.
. .
. . . . jsp hosting servlets hosting web hosting web sites designed cheap web hosting web site hosting myspace web hosting