table.addHeading("getContentLength: ").cell().right();
table.addCell(Integer.toString(request.getContentLength()));
table.newRow();
table.addHeading("getContentType: ").cell().right();
table.addCell("" + request.getContentType());
table.newRow();
table.addHeading("getCharacterEncoding: ").cell().right();
table.addCell("" + request.getCharacterEncoding());
table.newRow();
table.addHeading("getRequestURI: ").cell().right();
table.addCell("" + request.getRequestURI());