Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
Using ServletOutputStream Object in JSP Pages
Can you make use of a ServletOutputStream object from within a JSP page?
✍: FYICENTER.com
No. You are supposed to make use of only a JSPWriter object (given to you in the form of the implicit object out) for replying to clients.
A JSPWriter can be viewed as a buffered version of the stream object returned by response.getWriter(), although from an implementational perspective, it is not.
2007-04-03, 5026👍, 0💬
Popular Posts:
What Articles Have You Read about JUnit? There are a number of JUnit articles that you should read: ...
What is the significance of Finalize method in .NET? .NET Garbage collector does almost all clean up...
Which one of the following statements is TRUE in regard to overloading the ++ operator? 1 You cannot...
What is a delegate ? Delegate is a class that can hold a reference to a method or a function. Delega...
In C#, what is a weak reference? Generally, when you talk about a reference to an object in .NET (an...