资源介绍
从数据库取出数据直接生成静态页
/*
* ToHtml.java
* author : stone
* 动态生成静态插件V1.0
* 返回0 表示生成成功
* 返回-1表示生成失败
* savePath 就是tomcat中的webapp文件夹所在的目录
*/
调用例子:
public static void main(String []agrs){
ToHtml th = new ToHtml();
Map map = new HashMap();
map.put("{1}", "数据库数据1");
map.put("{2}", "数据库数据2");
th.createdHtml(map, "E:\\source.html", "result.html", "D:\\apache-tomcat-6.0.20\\webapps", "服务器根路径下的目录如(\\html\\result_html_page\\", "http://127.0.0.1:8080");
}
- 上一篇: doc、docx格式互转工具
- 下一篇: POI-TL合并多个Word文档