Pages

Tuesday, 24 December 2013

Setting DocType in JSP

    <% Doctype doc= Doctype.valueOf("HTML_5");
        doc.toRequest(request);

    %>
    <%= Doctype.fromRequest(request).getDeclaration() %> 


2 comments:

  1. This does not work in adobe cq5.4 version
    any workaround for that

    ReplyDelete
  2. <%= Doctype.fromRequest(request).getDeclaration() %> - what is the use of writting this...Please explain ..

    ReplyDelete

Converting InputStream to String

    private String convertToString(InputStream inputStreamObj)             throws IOException {         if (inputStreamObj != null) {     ...