Here you can find the source of htmlWrap(StringBuilder s)
public static StringBuilder htmlWrap(StringBuilder s)
//package com.java2s; //License from project: Open Source License public class Main { public static StringBuilder htmlWrap(StringBuilder s) { s.insert(0, "<html>").append("</html>"); return s; }/*from w w w . ja v a 2s. c o m*/ }