新闻发布时候的静态页面生成 java
发布网友
发布时间:2022-04-30 02:23
我来回答
共5个回答
懂视网
时间:2022-05-13 12:32
求一个新闻发布页面,可添加图片的。前台的显示大概就像是《好奇心日报》文章那样的
http://www.qdaily.com/display/articles/5528.html
回复讨论(解决方案)
HTML5 啊,IE8(win7默认浏览器)打不开啊;得重构啊。
那个是好奇心日报的网址,确实用HTML5做的
热心网友
时间:2022-05-13 09:40
给你思路:
1、使用java+freeMarker实现。
2、使用java的IO写HTML文档。
3、使用URLRewriter将*.jsp伪装成*.html来访问。
4、将html的内容存入数据库中,在运行时读取出来在服务端输出成html。最后把请求转至html
第一种最简单,不知道你用过没有。简单的说,就是你想生成一个动态的html,你只需要html页面的静态部分写死,作为模板,动态的数据部分,用java的Map封装起来,然后交给freeMarker,它会帮你写入html文档中。最后给你生成你想要的html文档。这个html文档具有你的静态结构,加上动态数据。我给你个示例。
import java.io.ByteArrayOutputStream;import java.io.OutputStreamWriter;import java.io.Writer;import java.util.Locale;import java.util.Map;
import freemarker.template.Configuration;import freemarker.template.DefaultObjectWrapper;import freemarker.template.Template;
/** * 使用freeMarker模板生成报表的动态数据代码 * @author wzj * 2013-09-18 */public class ReportFreeMarker { private static Configuration cfg = new Configuration(); private static final String FTL_FILE = "chart_templet_"; static { try { cfg.setDefaultEncoding("utf-8"); cfg.setClassForTemplateLoading(ReportFreeMarker.class, ""); cfg.setObjectWrapper(new DefaultObjectWrapper()); } catch (Exception e) { e.printStackTrace(); } } // public static void main(String[] args) throws Exception {// new ReportFreeMarker().execute("chart_templet.ftl");//}
/** * 根据type来决定使用哪个模板文件,生成对应的柱图,饼图(1-柱图,2-饼图) * @param parameterMap 参数集 * @param type 图表类别 * @return * @throws Exception */ public String buildChartCode(Map parameterMap, int type) throws Exception { Template t = cfg.getTemplate(FTL_FILE + type + ".ftl"); t.setEncoding("utf-8"); String result = null; Writer out = null; ByteArrayOutputStream bos = new ByteArrayOutputStream(); try { out = new OutputStreamWriter(bos); t.process(parameterMap, out); out.flush(); result = new String(bos.toByteArray()); } catch (Exception e) { e.printStackTrace(); throw e; } finally { if (out != null) { out.close(); } if ( bos != null ) bos.close(); bos = null; } return result;
// File tmp = new File("./tmp.xml"); //写成tmp.xml测试// if ( tmp.exists() ) tmp.delete();// Writer out = null;// try {// out = new OutputStreamWriter(new FileOutputStream(tmp), "utf-8");// t.process(root, out);// out.flush();// } catch (Exception e) {// e.printStackTrace();// throw e;// } finally {// if (out != null) {// out.close();// }// } }}
//下面是调用
ReportFreeMarker marker = new ReportFreeMarker(); Map root = new HashMap();
root.put(CHART_XLIST, xlist); root.put(CHART_YLIST, ylist); String content = null; try { content = marker.buildChartCode(root, chartType);//根据模板生成图表xml代码 } catch (Exception e) { e.printStackTrace(); throw new ReportException(ERROR_FREEMARKER_FAILED + "(" + e.getMessage() + ")"); }
这样,你最后可以得到一个包含动态数据的静态html页面的代码,保存成一个文件。
////在html中(模板)可以这样写
<html> <body>
<#list ylist as item> <!--这就是动态的,要封装成map传入--> <table></table>
</#list>
</body>
</html>
热心网友
时间:2022-05-13 10:58
这个其实是在jsp页面填好新闻内容后,新闻数据被提交到数据库;当用户访问页面时,系统会从数据库取出数据,填充进jsp页面;服务器将填充好的jsp页面解释为html格式的数据流,返回给访问的用户浏览器,用户在浏览器上看到的就是最终页面了。追问那点击保存后,有没办法把发布的内容生成静态的呢,
热心网友
时间:2022-05-13 12:33
用java代码就可以实现了, 把新闻页面内容生成html静态文件。。你百度下java怎么将jsp静态化的
热心网友
时间:2022-05-13 14:24
System.out.print("hello world")