The write method of the Response class sends output to the client. This is an overloaded method, so the output will be determined by the input parameters. One version of the method is defined in aspcomp.Response, the other three versions are inherited from java.io.OutputStream interface.
public void write(java.lang.String p1); public void write(byte p1[], int p2, int p3); throws IOException, NullPointerException, IndexOutOfBoundsException