1. 程式人生 > >Android html程式碼轉義

Android html程式碼轉義

 轉載自簡書:https://www.jianshu.com/p/b0f3b9429fdd

   參考自:http://jiangyongyuan.iteye.com/blog/393711

轉移程式碼如下:

private String translation(String content) {
    String replace = content.replace("<", "<");
    String replace1 = replace.replace(">", ">");
    String replace2 = replace1.replace("&", "&");
    String replace3 = replace2.replace(""", "\"");
    return replace3.replace("&copy;", "©");
}

作者:MiHoms
連結:https://www.jianshu.com/p/b0f3b9429fdd
來源:簡書
著作權歸作者所有。商業轉載請聯絡作者獲得授權,非商業轉載請註明出處。