Java tutorial
//package com.java2s; import android.text.TextUtils; public class Main { public static String encodeHtml(String to_encode) { return TextUtils.htmlEncode(to_encode); } }