String charset = getCharset();
if (charset == null)
contenttype = HttpFactory.makeMimeType(getContentType());
else {
MimeType ctype = getContentType().getClone();
ctype.addParameter("charset", charset);
contenttype = HttpFactory.makeMimeType(ctype);
}
}
if (contentlength == null) {
int cl = -1;