Here you can find the source of createHtmlLink(String title, String url)
public static String createHtmlLink(String title, String url)
//package com.java2s; //License from project: Open Source License public class Main { public static String createHtmlLink(String title, String url) { String html = "<a href =\"" + url + "\" >" + title + "</a>"; return html; }// w w w . ja v a2 s . c o m }