public void raw(InputStream is) throws MimeException, IOException {
throw new UnsupportedOperationException("Not supported");
}
private static ByteSequence loadStream(InputStream in) throws IOException {
ByteArrayBuffer bab = new ByteArrayBuffer(64);
int b;
while ((b = in.read()) != -1) {
bab.append(b);
}
return bab;
}