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