简单的静态化

编程技术  /  houtizong 发布于 3年前   153
1、 需要静态化的页面需要是内容不会经常变动的页面
2、 开始静态化
(1)首先确定好要静态化的jsp
(2)打开url 获取jsp
(3)通过流的方式读取jsp 输出 html
    /**
     * @param sourceUrl 源路径
     * @param saveDir html 存储路径
     * @param htmlName 生成的html 文件名
     * @throws IOException
     */
    public static void convert2Html(String sourceUrl, String saveDir,
            String htmlName) throws IOException
    {
        //定义一个返回值 (在url open connection时 查看返回值  是否可以打开连接
        int HttpResult;
        URL url = new URL(sourceUrl);
        URLConnection urlconn = url.openConnection();
        urlconn.connect();
        HttpURLConnection httpconn = (HttpURLConnection) urlconn;
        HttpResult = httpconn.getResponseCode();
        // url 打开连接应当返回一个 jsp (包含后台数据的jsp)
        if (HttpResult != HttpURLConnection.HTTP_OK)
        {
            //如果打开连接失败则直接返回 或者抛出错误
        }
        else
        {
            //成功获得jsp 然后通过流的方式 把jsp 输出到 html
            InputStreamReader isr = new InputStreamReader(httpconn
                    .getInputStream(), "GB2312");
            BufferedReader in = new BufferedReader(isr);

            String inputLine;
            if (!saveDir.endsWith("/"))
                saveDir += "/";
            FileOutputStream fout = new FileOutputStream(saveDir + htmlName);
            while ((inputLine = in.readLine()) != null)
            {
                fout.write(inputLine.getBytes());

            }
            in.close();
            fout.close();

        }

    }

请勿发布不友善或者负能量的内容。与人为善,比聪明更重要!

留言需要登陆哦

技术博客集 - 网站简介:
前后端技术:
后端基于Hyperf2.1框架开发,前端使用Bootstrap可视化布局系统生成

网站主要作用:
1.编程技术分享及讨论交流,内置聊天系统;
2.测试交流框架问题,比如:Hyperf、Laravel、TP、beego;
3.本站数据是基于大数据采集等爬虫技术为基础助力分享知识,如有侵权请发邮件到站长邮箱,站长会尽快处理;
4.站长邮箱:[email protected];

      订阅博客周刊 去订阅

文章归档

文章标签

友情链接

Auther ·HouTiZong
侯体宗的博客
© 2020 zongscan.com
版权所有ICP证 : 粤ICP备20027696号
PHP交流群 也可以扫右边的二维码
侯体宗的博客