91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

freemarker靜態化生成html頁面亂碼怎么解決

發布時間:2023-01-13 09:14:58 來源:億速云 閱讀:139 作者:iii 欄目:開發技術

這篇文章主要介紹“freemarker靜態化生成html頁面亂碼怎么解決”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“freemarker靜態化生成html頁面亂碼怎么解決”文章能幫助大家解決問題。

    freemarker靜態化生成html頁面亂碼的問題

    下面是springmvc的核心代碼

     <!-- freemarker的配置 -->
        <bean id="freeMarkerConfigurer" class="org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer">
                <!-- templateLoaderPath  :前綴 -->
                <property name="templateLoaderPath" value="/WEB-INF/ftl/"></property>
                <!-- 編碼 -->
                <property name="defaultEncoding" value="utf-8"></property>
                <!-- 可選的配置 -->
                <property name="freemarkerSettings">
              <props>
                    <prop key="template_update_delay">10</prop>
                    <prop key="locale">zh_CN</prop>
                    <prop key="datetime_format">yyyy-MM-dd HH:mm:ss</prop>
                    <prop key="date_format">yyyy-MM-dd</prop>
                    <prop key="time_format">HH:mm:ss</prop>
                    <!-- 頁面數值的顯示格式 -->
                    <prop key="number_format">#.##</prop><!-- 88,282,882,888,888 --><!-- 88282882888888.00  -->
                </props>
               </property>
         </bean>
         
         <!-- freemarker的解析器 -->
         <bean id="freeMarkerViewResolver" class="org.springframework.web.servlet.view.freemarker.FreeMarkerViewResolver">
             <!-- 后綴
             .ftl:是freemarker模板文件的后綴
              -->
               <property name="suffix" value=".ftl"></property>
               <property name="contentType" value="text/html;charset=utf-8"></property>
               <!-- 方便頁面獲得項目的絕對路徑 -->
               <property name="requestContextAttribute" value="request"></property>
         </bean>

    然后是controller的核心代碼

    @RequestMapping("/getHtml")
        public String getHtml(HttpServletRequest request,HttpServletResponse response) throws Exception{
            //第一步 freemarkerConfigurer得到一個Configure對象
            Configuration configuration = freeMarkerConfigurer.getConfiguration();
            //第二步 得到一個模版文件
            Template template = configuration.getTemplate("index.ftl");
            //第三步 構建數據模型
            Map<String, Object> map = new HashMap<String, Object>();
            map.put("uname", "zhangsan");
            map.put("bookList", BookDaoImpl.getBookList());
            System.out.println(BookDaoImpl.getBookList().get(0).getAuthor());
            //第四步 指定一個文件夾 構建一個輸出流
            String dir = request.getSession().getServletContext().getRealPath("/WEB-INF/");
            //PrintWriter printWriter = new PrintWriter(new FileWriter(new File(dir,"index.html")));
            System.out.println(dir);
            //第五步 數據模型+模版文件 = 輸出(控制臺輸出,html文件)
            template.process(map, printWriter);
            printWriter.flush();
            return "success";
        }

    最后頁面提示成功生成html頁面

    但在進入生成的html頁面時發生了亂碼

    在網上也查了下大致給了以下幾種解決方案

    首先是說ftl文件的head上加上

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">

    因為我在springmvc的視圖解析器配置了

    <property name="contentType" value="text/html;charset=utf-8"></property>

    所以這個選擇首先pass掉,然后說是在controller里加上

    configuration.setDefaultEncoding("UTF-8");

    不過因為我在freemarker的環境配置我也配置了默認的編碼

    <!-- 編碼 -->
    <property name="defaultEncoding" value="utf-8"></property>

    所以應該也不是這個原因,后來我找到生成的html文件,發現用瀏覽器查看源代碼雖然會亂碼,但用記事本打開的時候所顯示并沒有亂碼,然后判斷是輸出流的問題,通過網上查找發現FileWriter和FileReader使用的是系統默認的編碼方式,因為fileWriter本身不具有用戶指定編碼的方式,這里選擇使用filewriter 的父類OutputStreamWriter來讀寫操作,把代碼

    String dir = request.getSession().getServletContext().getRealPath("/WEB-INF/");
    //PrintWriter printWriter = new PrintWriter(new FileWriter(new File(dir,"index.html")));

    替換成

    String dir = request.getSession().getServletContext().getRealPath("/WEB-INF/index.html");
            OutputStreamWriter writer = new OutputStreamWriter(new FileOutputStream(dir), "UTF-8");
            PrintWriter printWriter = new PrintWriter(writer);

    后啟動程序

    freemarker頁面靜態化步驟以及相關注意事項

    Freemarker

    導入坐標

    <dependency>
    <groupId>org.freemarker</groupId>
    <artifactId>freemarker</artifactId>
    <version>2.3.23</version>
    </dependency>

    創建模板文件

    <html>
    <head>
    <meta charset="utf-8">
    <title>Freemarker入門</title>
    </head>
    <body>
    <#--我只是一個注釋,我不會有任何輸出 -->
    ${name}你好,${message}
    </body>
    </html>

    生成文件

    public static void main(String[] args) throws Exception{
    //1.創建配置類
    Configuration configuration=new Configuration(Configuration.getVersion());
    //2.設置模板所在的目錄
    configuration.setDirectoryForTemplateLoading(new File("D:\\ftl"));
    //3.設置字符集,讀取文件的編碼
    configuration.setDefaultEncoding("utf-8");
    //4.加載模板
    Template template = configuration.getTemplate("test.ftl");
    //5.創建數據模型
    Map map=new HashMap();
    map.put("name", "張三");
    map.put("message", "歡迎來到中國!");
    //6.創建Writer對象
    //   // 指定輸出編碼格式 utf-8
            Writer writer = new BufferedWriter(new OutputStreamWriter(new FileOutputStream ("d:\\ftl\\test.html"),"UTF-8"));
    //Writer out =new FileWriter(new File("d:\\test.flt"));
    //7.輸出
    template.process(map, out);
    //8.關閉Writer對象
    out.close();
    }

    例子

    分析

    前面我們已經學習了Freemarker的基本使用方法,下面我們就可以將Freemarker應用到項目中,幫我們生成移動端套餐列表靜態頁面和套餐詳情靜態頁面。

    接下來我們需要思考幾個問題:

    (0)那些頁面應該靜態化? 數據不經常發生變化,訪問量大的

    (1)什么時候生成靜態頁面比較合適呢?

    (2)將靜態頁面生成到什么位置呢?

    (3)應該生成幾個靜態頁面呢?

    • 對于第一個問題,應該是當套餐數據發生改變時,需要生成靜態頁面,即我們通過后臺系統修改套餐數據(包括新增、刪除、編輯)時。

    • 對于第二個問題,如果是在開發階段可以將文件生成到項目工程中,如果上線后可以將文件生成到移動端系統運行的tomcat中。

    • 對于第三個問題,套餐列表只需要一個頁面就可以了,在這個頁面中展示所有的套餐列表數據即可。套餐詳情頁面需要有多個,即一個套餐應該對應一個靜態頁面。

    模板

    mobile_setmeal.ftl

    <!DOCTYPE html>
    <html lang="zh-CN">
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <!-- 上述3個meta標簽*必須*放在最前面,任何其他內容都*必須*跟隨其后! -->
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0,user-scalable=no,minimal-ui">
        <meta name="description" content="">
        <meta name="author" content="">
        <link rel="icon" href="../img/asset-favico.ico" rel="external nofollow"  rel="external nofollow" >
        <title>預約</title>
        <link rel="stylesheet" href="../css/page-health-order.css" rel="external nofollow"  />
    </head>
    <body data-spy="scroll" data-target="#myNavbar" data-offset="150">
    <div class="app" id="app">
        <!-- 頁面頭部 -->
        <div class="top-header">
            <span class="f-left"><i class="icon-back" onclick="history.go(-1)"></i></span>
            <span class="center">大鵝健康</span>
            <span class="f-right"><i class="icon-more"></i></span>
        </div>
        <!-- 頁面內容 -->
        <div class="contentBox">
            <div class="list-column1">
                <ul class="list">
                    <#list setmealList as setmeal>
                        <li class="list-item">
                            <a class="link-page" href="setmeal_detail_${setmeal.id}.html" rel="external nofollow" >
                                <img class="img-object f-left"
                                     src="http://py25jppgz.bkt.clouddn.com/${setmeal.img}"
                                     alt="">
                                <div class="item-body">
                                    <h5 class="ellipsis item-title">${setmeal.name}</h5>
                                    <p class="ellipsis-more item-desc">${setmeal.remark}</p>
                                    <p class="item-keywords">
                                        <span>
                                            <#if setmeal.sex == '0'>
                                                性別不限
                                            <#else>
                                                <#if setmeal.sex == '1'>
                                                    男
                                                <#else>
                                                    女
                                                </#if>
                                            </#if>
                                        </span>
                                        <span>${setmeal.age}</span>
                                    </p>
                                </div>
                            </a>
                        </li>
                    </#list>
                </ul>
            </div>
        </div>
    </div>
    <!-- 頁面 css js -->
    <script src="../plugins/vue/vue.js"></script>
    <script src="../plugins/vue/axios-0.18.0.js"></script>
    </body>

    模板

    <!DOCTYPE html>
    <html lang="zh-CN">
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <!-- 上述3個meta標簽*必須*放在最前面,任何其他內容都*必須*跟隨其后! -->
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0,user-scalable=no,minimal-ui">
        <meta name="description" content="">
        <meta name="author" content="">
        <link rel="icon" href="../img/asset-favico.ico" rel="external nofollow"  rel="external nofollow" >
        <title>預約詳情</title>
        <link rel="stylesheet" href="../css/page-health-orderDetail.css" rel="external nofollow"  />
        <script src="../plugins/vue/vue.js"></script>
        <script src="../plugins/vue/axios-0.18.0.js"></script>
        <script src="../plugins/healthmobile.js"></script>
    </head>
    <body data-spy="scroll" data-target="#myNavbar" data-offset="150">
    <div id="app" class="app">
        <!-- 頁面頭部 -->
        <div class="top-header">
            <span class="f-left"><i class="icon-back" onclick="history.go(-1)"></i></span>
            <span class="center">大鵝健康</span>
            <span class="f-right"><i class="icon-more"></i></span>
        </div>
        <!-- 頁面內容 -->
        <div class="contentBox">
            <div class="card">
                <div class="project-img">
                    <img src="http://py25jppgz.bkt.clouddn.com/${setmeal.img}"
                         width="100%" height="100%" />
                </div>
                <div class="project-text">
                    <h5 class="tit">${setmeal.name}</h5>
                    <p class="subtit">${setmeal.remark}</p>
                    <p class="keywords">
                        <span>
                            <#if setmeal.sex == '0'>
                                性別不限
                            <#else>
                                <#if setmeal.sex == '1'>
                                    男
                                <#else>
                                    女
                                </#if>
                            </#if>
                        </span>
                        <span>${setmeal.age}</span>
                    </p>
                </div>
            </div>
            <div class="table-listbox">
                <div class="box-title">
                    <i class="icon-zhen"><span class="path2"></span><span class="path3"></span></i>
                    <span>套餐詳情</span>
                </div>
                <div class="box-table">
                    <div class="table-title">
                        <div class="tit-item flex2">項目名稱</div>
                        <div class="tit-item  flex3">項目內容</div>
                        <div class="tit-item  flex3">項目解讀</div>
                    </div>
                    <div class="table-content">
                        <ul class="table-list">
                            <#list setmeal.checkGroups as checkgroup>
                                <li class="table-item">
                                    <div class="item flex2">${checkgroup.name}</div>
                                    <div class="item flex3">
                                        <#list checkgroup.checkItems as checkitem>
                                            <label>
                                                ${checkitem.name}
                                            </label>
                                        </#list>
                                    </div>
                                    <div class="item flex3">${checkgroup.remark}</div>
                                </li>
                            </#list>
                        </ul>
                    </div>
                    <div class="box-button">
                        <a @click="toOrderInfo()" class="order-btn">立即預約</a>
                    </div>
                </div>
            </div>
        </div>
    </div>
    <script>
        var vue = new Vue({
            el:'#app',
            methods:{
                toOrderInfo(){
                    window.location.href = "orderInfo.html?id=${setmeal.id}";
                }
            }
        });
    </script>
    </body>

    配置文件

    (1)在health_service_provider工程中創建屬性文件freemarker.properties 通過上面的配置可以指定將靜態HTML頁面生成的目錄位置

    out_put_path=靜態頁面生成的位置

    在spring的中進行配置

    <bean id="freemarkerConfig"
    class="org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer">
    <!--指定模板文件所在目錄-->
    <property name="templateLoaderPath" value="/WEB-INF/ftl/" />
    <!--指定字符集-->
    <property name="defaultEncoding" value="UTF-8" />
    </bean>
    <context:property-placeholder location="classpath:freemarker.properties"/>

    13 java 代碼

       @Autowired
        private SetmealDao setmealDao;
        @Autowired
        private JedisPool jedisPool;
        @Autowired
        private CheckGroupDao checkGroupDao;
        @Autowired
        private CheckItemDao checkItemDao;
        @Autowired
        private FreeMarkerConfigurer freeMarkerConfigurer;
        @Value("${out_put_path}")
        private String outPutPath;//從屬性文件中讀取要生成的html對應的目錄
    //新增套餐,同時關聯檢查組
        public void add(Setmeal setmeal, Integer[] checkgroupIds) {
            setmealDao.add(setmeal);
            Integer setmealId = setmeal.getId();//獲取套餐id
            this.setSetmealAndCheckGroup(setmealId,checkgroupIds);
            //完成數據庫操作后需要將圖片名稱保存到redis
            jedisPool.getResource().sadd(RedisConstant.SETMEAL_PIC_DB_RESOURCES,setmeal.getImg());
    
            //當添加套餐后需要重新生成靜態頁面(套餐列表頁面、套餐詳情頁面)
            generateMobileStaticHtml();
        }
    
        //生成當前方法所需的靜態頁面
        public void generateMobileStaticHtml(){
            //在生成靜態頁面之前需要查詢數據
            List<Setmeal> list = setmealDao.findAll();
    
            //需要生成套餐列表靜態頁面
            generateMobileSetmealListHtml(list);
    
            //需要生成套餐詳情靜態頁面
            generateMobileSetmealDetailHtml(list);
        }
    
        //生成套餐列表靜態頁面
        public void generateMobileSetmealListHtml(List<Setmeal> list){
            Map map = new HashMap();
            //為模板提供數據,用于生成靜態頁面
            map.put("setmealList",list);
            generteHtml("mobile_setmeal.ftl","m_setmeal.html",map);
        }
    
        //生成套餐詳情靜態頁面(可能有多個)
        public void generateMobileSetmealDetailHtml(List<Setmeal> list){
            for (Setmeal setmeal : list) {
                Map map = new HashMap();
                map.put("setmeal",setmealDao.findById4Detail(setmeal.getId()));
                generteHtml("mobile_setmeal_detail.ftl","setmeal_detail_" + setmeal.getId() + ".html",map);
            }
        }
    
        //通用的方法,用于生成靜態頁面
        public void generteHtml(String templateName,String htmlPageName,Map map){
            Configuration configuration = freeMarkerConfigurer.getConfiguration();//獲得配置對象
            Writer out = null;
            try {
                Template template = configuration.getTemplate(templateName);
                //構造輸出流
                // 中文亂碼  
                //out = new BufferedWriter (new OutputStreamWriter (new FileOutputStream (outPutPath + "/" + htmlPageName),"UTF-8"));            //構造輸出流
                out = new FileWriter(new File(outPutPath + "/" + htmlPageName));
                //輸出文件
                template.process(map,out);
                out.close();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }

    生成靜態頁面的通用方法

        //通用的方法,用于生成靜態頁面(參數:templateName:模板,htmlPageName:生成的文件名稱,Map:數據)
        public void generteHtml(String templateName,String htmlPageName,Map map){
            Configuration configuration = freeMarkerConfigurer.getConfiguration();//獲得配置對象
            Writer out = null;
            try {
                Template template = configuration.getTemplate(templateName);
                //構造輸出流
                // 中文亂碼  
                //out = new BufferedWriter (new OutputStreamWriter (new FileOutputStream (outPutPath + "/" + htmlPageName),"UTF-8"));            //構造輸出流
                out = new FileWriter(new File(outPutPath + "/" + htmlPageName));
                //輸出文件
                template.process(map,out);
                out.close();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }

    14 -測試

      public void genById(Integer setmealId){
            Map map = new HashMap();
            map.put("setmeal",setmealDao.findById4Detail(setmealId));
            generteHtml("mobile_setmeal_detail.ftl","setmeal_detail_" + setmealId + ".html",map);
        }

    關于“freemarker靜態化生成html頁面亂碼怎么解決”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

    向AI問一下細節

    免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

    AI

    临猗县| 方正县| 绥滨县| 丹巴县| 宜宾市| 哈尔滨市| 宜良县| 双流县| 达日县| 浮梁县| 进贤县| 都江堰市| 桂林市| 习水县| 自治县| 玉田县| 迭部县| 凤凰县| 钟祥市| 郓城县| 黄山市| 澜沧| 潜江市| 宝坻区| 个旧市| 大丰市| 玉屏| 嵊泗县| 南宁市| 张家川| 盘锦市| 中卫市| 东平县| 陇南市| 句容市| 中江县| 东安县| 安西县| 奉贤区| 漯河市| 霞浦县|