- 浏览: 7965 次
- 性别:
最新评论
-
lord_is_layuping:
受教了,可以暂时解决我的问题。先不管了。
jasperReport导出html乱码问题解决 -
zhanglei_1231:
楼主,想请教导出html分页问题,我也是按照要求做的就是位置出 ...
jasperReport导出html乱码问题解决 -
lit0302:
我pdf,excel没出现乱码,可是html就出现乱码,
ex ...
jasperReport导出html乱码问题解决 -
together:
可以去看看ajoo同学的大作,“你擦了吗”。
http://w ...
游标的问题
文章列表
最近因为项目的需要
File reportFile = new
File(getServlet().getServletConfig().getServletContext().getRealPath("/reports/cadreinfor_report.jasper"));
if (!reportFile.exists()) throw new JRRuntimeException("FileWebappReport.jasper " +
&qu ...
- 2007-02-27 13:14
- 浏览 4960
- 评论(3)
public Collection getResult(String sql) throws Exception, SQLException,
ParameterException, RecordNotFoundException {
PreparedStatement pstmt = null;
ResultSet rs = null;
try {
pstmt = conn.prepareStatement(sql);
rs = pstmt.executeQuery();
return DBUtil.resultSet2Collection(rs);
...