posted 18 years ago
Hi,
I want to use the following method at the same time.
is it possible?
1)response.getWriter();
2)response.getOutputStream();
I have written two method.
In first method, i am using response.getWriter();
In the second method, i am using response.getOutputStream();
Why because, in one place i have to handle bytes
in another place i have to handle characters.
But while calling the method. i got the exception.
How to handle these things.