java实现Html转Jsp

java实现Html转Jsp

来这里看看 https://xiaolvtaomi.github.io/

交代下背景:公司自己做的广告素材导出后是html,分析了Applovin的调用方式,需要将html转成jsp交给applovin的模板显示广告。所以需要把Html转Jsp。对比了在线转jsp的结果发现其实做了以下几个动作(因为不懂html和jsp所以只能对比看转前后的差别)

  • 写入前缀 al_renderHtml({“html”:"
  • 转义 /
  • 转义 "
  • 转义 \
  • 写入后缀 "})

代码实现


    public static void convertHtmlToJsp(Context context, String FOLER){
        new Thread(){
            public void run(){

                String JS_FILE_NAME = "index.js";
                String HTML_FINE_NAME = "index.html";
                String JS_PREFIX = "al_renderHtml({\"html\":\"";
                String JS_SUFIX = "\"})";

                BufferedReader br = null;
                FileWriter writer = null;
                try {
                    br = new BufferedReader(new FileReader(FOLDER + File.separator + HTML_FINE_NAME));
                    writer = new FileWriter(new File(FOLDER + File.separator + JS_FILE_NAME));

                    writer.write(JS_PREFIX);
                    String line;
                    char[] chars = new char[1024];
                    int len;
                    while ((len = br.read(chars)) > 0) {
                        line = String.copyValueOf(chars, 0, len);
                        writer.write(line.replace("\\", "\\\\").replace("\"", "\\\"").replace("/", "\\/"));
                    }
                    writer.write(JS_SUFIX);
                    writer.flush();
                } catch (Exception e) {
                    e.printStackTrace();
                } finally {
                    try {
                        if(br != null) {
                            br.close();
                        }
                        if(writer != null) {
                            writer.close();
                        }
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
            }
        }.start();

    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值