Here you can find the source of htmlFormatText(String line1, String line2)
public static String htmlFormatText(String line1, String line2)
//package com.java2s; //License from project: Open Source License public class Main { public static String htmlFormatText(String line1, String line2) { String text = "<html> " + "<body>" + "<label>" + line1 + "</label>" + "<br><label>" + line2 + "</label>" + "</body>" + "</html>"; return text; }/* w w w . j a va2s . com*/ }