快速业务通道

用Java从XML文件中获取业务图表 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-23
LoadConfigDoc(strChartConfigURL); // 然后取得用于数据系列的XPath列表 strDummy = GetChildItem(elemItem, "series"); LoadSeries(strDummy); // 取得用于数据类别的XPath列表 strDummy = GetChildItem(elemItem, "categories"); LoadCategories(strDummy); // 取得图像的尺寸 // 首先检查strX和strY参数. // 如果没有参数,从配置文件中读取。 nXSize = new Integer(strX).intValue(); if (nXSize==0) { strDummy = GetChildItem(elemItem, "XSize"); nXSize = new Integer(strDummy).intValue(); } nYSize = new Integer(strY).intValue(); if (nYSize==0) { strDummy = GetChildItem(elemItem, "YSize"); nYSize = new Integer(strDummy).intValue(); } // 开始制图: DoChart(); // 输出图表 response.setContentType("image/jpeg"); OutputStream out = response.getOutputStream(); ChartUtilities.writeChartAsJPEG(out, chart, nXSize, nYSize); out.close(); } catch(Exception e) { e.printStackTrace(); } }

用Java从XML文件中获取业务图表(3)

时间:2010-12-06

代码段2 DoChart函数

private void DoChart() { Node nRoot; Element nElem; int nType; String strTitle; String strCatTitle; String strValTitle; String strSTitleList; nRoot = xmlConfig.getDocumentElement(); nElem = (Element) nRoot; nType = new Integer(GetChildItem(nElem,"Type")).intValue(); strTitle = GetChildItem(nElem,"Title"); strCatTitle = GetChildItem(nElem,"CatTitle"); strValTitle = GetChildItem(nElem, "ValTitle"); strSTitleList = GetChildItem(nElem, "SeriesTitles"); LoadSeriesTitles(strSTitleList); // 取得数据并把它导入正确的数据结构 categoryData = createDataset(); // 分析图表类型然后创建适合的图表 switch(nType){ case 0: { // 垂直条状图 chart = ChartFactory.createVerticalBarChart (strTitle, strCatTitle, strValTitle, categoryData, true); break; } case 1: { // 饼状图 PieDataset pieData = DatasetUtilities.createPieDataset (categoryData, 0); chart = ChartFactory.createPieChart (strTitle, pieData, true); break; } case 2: { // 水平条状图 chart = ChartFactory.createHorizontalBarChart (strTitle, strCatTitle, strValTitle, categoryData, true); break; } case 3: { // 线状图 chart = ChartFactory.createLineChart (strTitle, strCatTitle, strValTitle, categoryData, true); break; } case 4: { // 面积图 chart = ChartFactory.createAreaChart (strTitle, strCatTitle, strValTitle, categoryData, true); break; } case 5: { // 3D水平条状图 chart = ChartFactory.createHorizontalBarChart3D (strTitle, strCatTitle, strValTitle, categoryData, true); break; } case 6: { // 3D 饼状图 PieDataset pieData = DatasetUtilities.createPieDataset(categoryData, 0); chart = ChartFactory.createPie3DChart(strTitle, pieData, true); break; } case 7: { // 堆积水平条状图 chart = ChartFactory.createStackedHorizontalBarChart (strTitle, strCatTitle, strValTitle, categoryData, true); break; } case 8: { // 堆积垂直条状图 chart = ChartFactory.createStackedVerticalBarChart (strTitle, strCatTitle, strValTitle, categoryData, true); break; } case 9: { // 3D堆积垂直条状图 chart = ChartFactory.createStackedV

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号