Esempio n. 1
0
 public void write(OutputStream out) throws IOException {
   out.write(header.getBytes());
   out.write(data);
   out.write(CRLF.getBytes());
 }
Esempio n. 2
0
 public int getSize() {
   return header.length() + data.length + CRLF.length();
 }