最近工作中遇到不少问题.总结一下.这段代码主要功能是将一个生成JSP页面转发成PDF输出到页面 需要利用ITEXT String html = ServletUtils.forward(request,response,"/WEB-INF/jsp/depot/print/jhd.jsp"); //转发请求到jsp,返回解析之后的内容而不是输出到浏览器//System.out.println(html);byte[] pdf = PDFUtils.html2pdf(html);respo
判断数据库内容,在页面显示自定义数据 case when...then ...else...end 比如:数据库内容是这样: 通过sql语句判断,数据库的name字段,内容是月桂的,显示嫦娥,其他的显示玉兔 select case when name='月桂' then '嫦娥' else '玉兔' end as name from jy_dic_crop t 参考: http://www.cnblogs.com/yazdao/archive/2009/12/09/1620482.html
首先用lua遍历目录: function getDirs(path) local s = {} function attrdir(p) for file in lfs.dir(p) do if file ~= "." and file ~= ".." then local f = p .. file local attr = lfs.attributes (f) if attr.mode == "directory" then table.ins