Here you can find the source of toHtmlUrl(String url, String displayLabel)
public static String toHtmlUrl(String url, String displayLabel)
//package com.java2s; //License from project: Open Source License public class Main { public static String toHtmlUrl(String url, String displayLabel) { return String.format("<a href='%s'>%s</a>", url, displayLabel); }//from w w w . ja v a 2s . c om }