UniServer / UniPrint / UniHttpd


データで出てくる半角(&<>)部分をhtml表記に変換する

htmlspecialchars2.java : 2018/11/09 01:04:30 341 Bytes
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
    /**
     * ページ内データで出てくる(&<>)部分をhtml表記に変換する
     * @param text  ページデータ
     * @return  String 変換後ページデータ
     */
    public static String htmlspecialchars2(String text){

        text = text.replaceAll("&", "&amp;");
        text = text.replaceAll("<", "&lt;");
        text = text.replaceAll(">", "&gt;");

        return text;
    }
 

Copyright © UTL Co.,Ltd. All Rights Reserved. [UTL]