OSCore (Open Symphony Core) is a java library with lot of utilities and reusable components. This requires the libraries oscore-2.2.6.jar, mail.jar to be in classpath. The following example shows using TextUtils.linkURL() API.
package com.bethecoder.tutorials.oscore; import com.opensymphony.util.TextUtils; public class LinkUrlTest { /** * @param args */ public static void main(String[] args) { String linkHtml = TextUtils.linkURL("http://bethecoder.com"); System.out.println(linkHtml); linkHtml = TextUtils.linkURL("<span>HOME [http://bethecoder.com]</span>"); System.out.println(linkHtml); } }
<a href="http://bethecoder.com">http://bethecoder.com</a> <span>HOME [<a href="http://bethecoder.com">http://bethecoder.com</a>]</span>