|
我現(xiàn)在也遇到這個(gè)問題,想了半個(gè)小時(shí)終于弄明白了,實(shí)現(xiàn)的過程還是很簡單的。(個(gè)人經(jīng)驗(yàn)總結(jié)而已)
解決的思路:
1.先將JFreechart生成的圖片保存在web 服務(wù)器上。
2.然后在JSP上用<img>標(biāo)簽顯示
3.通過JS將JSP導(dǎo)入php頁面
這樣就實(shí)現(xiàn)了。
部分getColumnChart.jsp源碼:
復(fù)制代碼 代碼如下:
<%
String startTime = request.getParameter("startTime");
String endTime = request.getParameter("endTime");
String filter = request.getParameter("filter");
Charts charts = new Charts();
String start = startTime == null ? "2013-05-12" : startTime;
String end = endTime == null ? "2013-11-01" : endTime;
String filters = filter == null ? "eventtype" : filter;
JFreeChart chart = charts
.getPieChart(startTime, endTime, filter);//開始時(shí)間、結(jié)束時(shí)間、filter
String filename = ServletUtilities.saveChartAsJPEG(chart, 800, 400,
null, session);
FileOutputStream fos_jpg = null;
File file = new File(application.getRealPath("")+"/charts");
String path =request.getContextPath()+"/charts/NoData.jpg";
try {
file.mkdirs();
fos_jpg = new FileOutputStream(file.getPath()+"/"+filename);
ChartUtilities.writeChartAsJPEG(fos_jpg, 1.0f, chart, 800, 400,
null);
} catch (Exception e) {
} finally {
try {
fos_jpg.close();
} catch (Exception e) {
}
}
path = request.getContextPath()+"/charts/"+filename;
%>
<div align="center">
<img src="<%=path %>" name="圖片" width=800 height=400 border=0>
</div>
實(shí)現(xiàn)導(dǎo)入JSP的JS源碼
復(fù)制代碼 代碼如下:
extjs.chart.chart3D = function(nodeid,id){
var panel = new Ext.Panel({
border:false,
fitToFrame: true,//很簡單的就一個(gè)Html標(biāo)簽
html: '<iframe id="frameHelp" src="/getColumnChart.jsp" frameborder="0" width="100%" height="520" ></iframe>'
});
return panel;
}
php技術(shù):在PHP上顯示JFreechart畫的統(tǒng)計(jì)圖方法,轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請第一時(shí)間聯(lián)系我們修改或刪除,多謝。