if (strOutputStream == null) {
if (fixedContentLength != -1) {
strOutputStream = new StreamingOutputStream (ps, fixedContentLength);
} else if (chunkLength != -1) {
strOutputStream =
new StreamingOutputStream (new ChunkedOutputStream (ps, chunkLength), -1);
}
}
return strOutputStream;
} else {
if (poster == null) {