}
public StaticFileOutputStream getStaticFileOutputStream()
throws IOException {
if (usingWriter)
throw new HttpServerException(
"getWriter has already been called for this response");
if (usingOutputStream)
throw new HttpServerException(
"getOutputStream has already been called for this response");
createOutput();
usingFileOutputStream = true;
return fileOut;