FreeMarker生成靜態網頁遇到亂碼問題

xl_echo編輯整理,歡迎轉載,轉載請聲明文章來源。更多IT、編程案例、資料請聯繫QQ:1280023003
百戰不敗,依不自稱常勝,百敗不頹,依能奮力前行。——這纔是真正的堪稱強大!!html


輸出網頁源碼java

package com.pinyougou.page.service.impl;

import java.io.FileWriter;
import java.io.PrintWriter;
import java.io.Writer;
import java.util.HashMap;
import java.util.Map;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.servlet.view.freemarker.FreeMarkerConfig;

import com.alibaba.dubbo.config.annotation.Service;
import com.pinyougou.mapper.TbGoodsDescMapper;
import com.pinyougou.mapper.TbGoodsMapper;
import com.pinyougou.page.service.ItemPageService;
import com.pinyougou.pojo.TbGoods;
import com.pinyougou.pojo.TbGoodsDesc;

import freemarker.template.Configuration;
import freemarker.template.Template;

/** * 商品靜態網頁生成 * @author Administrator * */
@Service
public class ItemPageServiceImpl implements ItemPageService {

    @Value("${pagedir}")
    private String pagedir;

    @Autowired
    private FreeMarkerConfig freeMarkerConfig;

    @Autowired
    private TbGoodsMapper goodsMapper;

    @Autowired
    private TbGoodsDescMapper goodsDescMapper;

    @Override
    public boolean genItemHtml(Long goodsId) {

        try{
            Configuration configuration = freeMarkerConfig.getConfiguration();
            Template template = configuration.getTemplate("item.ftl");
            Map dataModel = new HashMap<>();
            //加載商品表數據
            TbGoods goods = goodsMapper.selectByPrimaryKey(goodsId);
            dataModel.put("goods", goods);

            //加載商品擴展表數據
            TbGoodsDesc goodsDesc = goodsDescMapper.selectByPrimaryKey(goodsId);
            dataModel.put("goodsDesc", goodsDesc);
            Writer out = new FileWriter(pagedir+goodsId + ".html");

            template.process(dataModel, out);

            out.close();
            return true;

        }catch (Exception e){
            e.printStackTrace();
            return false;
        }
    }

}

這裏寫圖片描述

更改輸出,按照UTF-8輸出web

package com.pinyougou.page.service.impl;

import java.io.FileWriter;
import java.io.PrintWriter;
import java.io.Writer;
import java.util.HashMap;
import java.util.Map;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.servlet.view.freemarker.FreeMarkerConfig;

import com.alibaba.dubbo.config.annotation.Service;
import com.pinyougou.mapper.TbGoodsDescMapper;
import com.pinyougou.mapper.TbGoodsMapper;
import com.pinyougou.page.service.ItemPageService;
import com.pinyougou.pojo.TbGoods;
import com.pinyougou.pojo.TbGoodsDesc;

import freemarker.template.Configuration;
import freemarker.template.Template;

/** * 商品靜態網頁生成 * @author Administrator * */
@Service
public class ItemPageServiceImpl implements ItemPageService {

    @Value("${pagedir}")
    private String pagedir;

    @Autowired
    private FreeMarkerConfig freeMarkerConfig;

    @Autowired
    private TbGoodsMapper goodsMapper;

    @Autowired
    private TbGoodsDescMapper goodsDescMapper;

    @Override
    public boolean genItemHtml(Long goodsId) {

        try{
            Configuration configuration = freeMarkerConfig.getConfiguration();
            configuration.setDefaultEncoding("UTF-8");
            Template template = configuration.getTemplate("item.ftl");
            template.setEncoding("UTF-8");
            Map dataModel = new HashMap<>();
            //加載商品表數據
            TbGoods goods = goodsMapper.selectByPrimaryKey(goodsId);
            dataModel.put("goods", goods);

            //加載商品擴展表數據
            TbGoodsDesc goodsDesc = goodsDescMapper.selectByPrimaryKey(goodsId);
            dataModel.put("goodsDesc", goodsDesc);
            //Writer out = new FileWriter(pagedir+goodsId + ".html")
            Writer out = new PrintWriter(pagedir+goodsId + ".html", "UTF-8");

            template.process(dataModel, out);

            out.close();
            return true;

        }catch (Exception e){
            e.printStackTrace();
            return false;
        }
    }

}

輸出正常啦!
這裏寫圖片描述spring