当前位置: 代码迷 >> Java Web开发 >> 生成静态页面时出现乱码的有关问题!
  详细解决方案

生成静态页面时出现乱码的有关问题!

热度:99   发布时间:2016-04-17 13:12:07.0
生成静态页面时出现乱码的问题!!
首先是一个模板文件template.htm
<!DOCTYPE   HTML   PUBLIC   "-//W3C//DTD   HTML   4.01   Transitional//EN "
"http://www.w3.org/TR/html4/loose.dtd ">
<html>
<head>
<meta   http-equiv= "Content-Type "   content= "text/html;   charset=utf-8 ">
<title> 无标题文档 </title>
</head>

<body>
    <body>      
    <table       width= "500 "       border= "0 "       align= "center "       cellpadding= "0 "       cellspacing= "2 ">      
            <tr>          
                    <td       align= "center "> ###title### </td>      
            </tr>      
            <tr>          
                    <td       align= "center "> author:###author###&nbsp;&nbsp; </td>      
            </tr>      
            <tr>      
                    <td> ###content###      
        </td>      
           
            </tr>      
       
    </table>      
</body>
</html>

这个是自己写的一个JAVA类:
package   DB;
import   java.io.*;
import   java.util.*;

public   class   AutoCreate   {
//         private   String       title=   null;      
//         private   String       content=   null;      
//         private   String       editer=   null;      
        private   String       filePath       =   null;      
       
        public   AutoCreate()
        {
       
        }
       
        public   String   CreateFile(String   path,   String   title,   String   content,   String   editer)
        {
        filePath   =   path   +   "html/template.htm ";      
        String       templateContent= " ";
        try{
                        FileInputStream   fileinputstream   =   new   FileInputStream(filePath);//读取模块文件      
                        int   lenght   =   fileinputstream.available();      
  相关解决方案