JAVA报表怎么做,最好给个DEMO

解决方案 »

  1.   

    第三方的jfreechart集成到你的系统中就可以了
      

  2.   

    jFreeChart, Portal
    这是jfreechart如何使用,以及范例:
    http://student.csdn.net/space.php?uid=65352&do=blog&id=3735
      

  3.   

    用Eclipse java可以编写表格,如显示货单,计算的金额等,删除、修改等,里面有一些表格的组件。做JSP,功能强大的可以用ireport,没用过,见笑了
      

  4.   

    Eclipse java,怎么编写表格?
      

  5.   

    用JasperReport吧 感觉这个最简单 功能也挺强大
      

  6.   

    public class FusionChartsCreator {
        /**
         * Adds additional string to the url to and encodes the parameters,<br>
         * so as to disable caching of data.<br>  
         * @param strDataURL -
         *                dataURL to be fed to chart
         * @param addNoCacheStr -
         *                Whether to add aditional string to URL to disable
         *                caching of data
         * @return cachedURL - URL with the additional string added
         */
        public static String addCacheToDataURL(String strDataURL) {
     String cachedURL = strDataURL;
     // Add the no-cache string if required
     // We add ?FCCurrTime=xxyyzz
     // If the dataURL already contains a ?, we add &FCCurrTime=xxyyzz
     // We replace : with _, as FusionCharts cannot handle : in URLs
     Calendar nowCal = Calendar.getInstance();
     Date now = nowCal.getTime();
     SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy HH_mm_ss a");
     String strNow = sdf.format(now);
     try {
         if (strDataURL.indexOf("?") > 0) {
      cachedURL = strDataURL + "&FCCurrTime="
      + URLEncoder.encode(strNow, "UTF-8");
         } else {
      cachedURL = strDataURL + "?FCCurrTime="
      + URLEncoder.encode(strNow, "UTF-8");
         }
     } catch (UnsupportedEncodingException e) {
         // TODO Auto-generated catch block
         e.printStackTrace();
         cachedURL = strDataURL + "?FCCurrTime=" + strNow;
     }
     return cachedURL;
        }
        /**
         * Creates the JavaScript + HTML code required to embed a chart.<br>
         * Uses the javascript FusionCharts class to create the chart by supplying <br>
         * the required parameters to it.<br>
         * Note: Only one of the parameters strURL or strXML has to be not null for this<br>
         * method to work. If both the parameters are provided then strURL is used for further processing.<br>
         * 
         * @param chartSWF -
         *                SWF File Name (and Path) of the chart which you intend
         *                to plot
         * @param strURL -
         *                If you intend to use dataURL method for this chart,
         *                pass the URL as this parameter. Else, set it to "" (in
         *                case of dataXML method)
         * @param strXML -
         *                If you intend to use dataXML method for this chart,
         *                pass the XML data as this parameter. Else, set it to ""
         *                (in case of dataURL method)
         * @param chartId -
         *                Id for the chart, using which it will be recognized in
         *                the HTML page. Each chart on the page needs to have a
         *                unique Id.
         * @param chartWidth -
         *                Intended width for the chart (in pixels)
         * @param chartHeight -
         *                Intended height for the chart (in pixels)
         * @param debugMode -
         *                Whether to start the chart in debug mode
         * @param registerWithJS -
         *                Whether to ask chart to register itself with
         *                JavaScript
         */
        public static String createChart(String chartSWF, String strURL,
         String strXML, String chartId, int chartWidth, int chartHeight,
         boolean debugMode, boolean registerWithJS) {
     StringBuffer strBuf = new StringBuffer();
     // First we create a new DIV for each chart. We specify the name of DIV
     // as "chartId"Div.
     // DIV names are case-sensitive.
     strBuf.append("\t\t<!-- START Script Block for Chart-->\n");
     strBuf.append("\t\t<script LANGUAGE='Javascript' SRC='/FusionCharts/FusionCharts.js'></script>\n");
     strBuf.append("\t\t<div id='" + chartId + "Div' align='center'>\n");
     strBuf.append("\t\t\t\tChart.\n");
     /*
      * The above text "Chart" is shown to users before the chart has started
      * loading (if there is a lag in relaying SWF from server). This text is
      * also shown to users who do not have Flash Player installed. You can
      * configure it as per your needs.
      */
     strBuf.append("\t\t</div>\n");
     /*
      * Now, we create the chart using FusionCharts js class. Each chart's
      * instance (JavaScript) Id is named as chart_"chartId".
      */
     strBuf.append("\t\t<script type='text/javascript'>\n");
     // Instantiate the Chart
     Boolean registerWithJSBool = new Boolean(registerWithJS);
     Boolean debugModeBool = new Boolean(debugMode);
     int regWithJSInt = boolToNum(registerWithJSBool);
     int debugModeInt = boolToNum(debugModeBool);
     strBuf.append("\t\t\t\tvar chart_" + chartId + " = new FusionCharts('"
      + chartSWF + "', '" + chartId + "', '" + chartWidth + "', '"
      + chartHeight + "', '" + debugModeInt + "', '" + regWithJSInt
      + "');\n");
     // Check whether we've to provide data using dataXML method or dataURL
     // method
     if (strXML.equals("")) {
         strBuf.append("\t\t\t\t// Set the dataURL of the chart\n");
         strBuf.append("\t\t\t\tchart_" + chartId + ".setDataURL(\"" + strURL
          + "\");\n");
     } else {
         strBuf.append("\t\t\t\t// Provide entire XML data using dataXML method\n");
         strBuf.append("\t\t\t\tchart_" + chartId + ".setDataXML(\"" + strXML
          + "\");\n");
     }
     strBuf.append("\t\t\t\t// Finally, render the chart.\n");
     strBuf.append("\t\t\t\tchart_" + chartId + ".render(\"" + chartId + "Div\");\n");
     strBuf.append("\t\t</script>\n");
     strBuf.append("\t\t<!--END Script Block for Chart-->\n");
     System.out.println(strBuf);
     return strBuf.substring(0);
        }
        /**
         * Creates the object tag required to embed a chart.
         * Generates the object tag to embed the swf directly into the html page.<br>
         * Note: Only one of the parameters strURL or strXML has to be not null for this<br>
         * method to work. If both the parameters are provided then strURL is used for further processing.<br>
         *  
         * @param chartSWF -
         *                SWF File Name (and Path) of the chart which you intend
         *                to plot
         * @param strURL -
         *                If you intend to use dataURL method for this chart,
         *                pass the URL as this parameter. Else, set it to "" (in
         *                case of dataXML method)
         * @param strXML -
         *                If you intend to use dataXML method for this chart,
         *                pass the XML data as this parameter. Else, set it to ""
         *                (in case of dataURL method)
         * @param chartId -
         *                Id for the chart, using which it will be recognized in
         *                the HTML page. Each chart on the page needs to have a
         *                unique Id.
         * @param chartWidth -
         *                Intended width for the chart (in pixels)
         * @param chartHeight -
         *                Intended height for the chart (in pixels)
         * @param debugMode -
         *                Whether to start the chart in debug mode
         */
        public static String createChartHTML(String chartSWF, String strURL,
         String strXML, String chartId, int chartWidth, int chartHeight,
         boolean debugMode) { /*
          * Generate the FlashVars string based
          * on whether dataURL has been provided
          * or dataXML.
          */
     String strFlashVars = "";
     Boolean debugModeBool = new Boolean(debugMode);
     if (strXML.equals("")) {
         // DataURL Mode
         strFlashVars = "chartWidth=" + chartWidth + "&chartHeight="
         + chartHeight + "&debugMode=" + boolToNum(debugModeBool)
         + "&dataURL=" + strURL + "";
     } else {
         // DataXML Mode
         strFlashVars = "chartWidth=" + chartWidth + "&chartHeight="
         + chartHeight + "&debugMode=" + boolToNum(debugModeBool)
         + "&dataXML=" + strXML + "";
     }
     StringBuffer strBuf = new StringBuffer();
     strBuf.append("\t\t<!--START Code Block for Chart-->\n");
     strBuf
     .append("\t\t<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='"
      + chartWidth
      + "' height='"
      + chartHeight
      + "' id='"
      + chartId + "'>\n");
     strBuf.append("\t\t\t\t<param name='allowScriptAccess' value='always' />\n");
     strBuf.append("\t\t\t\t<param name='movie' value='" + chartSWF + "'/>\n");
     strBuf.append("\t\t\t\t<param name='FlashVars' value=\"" + strFlashVars
      + "\" />\n");
     strBuf.append("\t\t\t\t<param name='quality' value='high' />\n");
     strBuf
     .append("\t\t\t\t<embed src='"
      + chartSWF
      + "' FlashVars=\""
      + strFlashVars
      + "\" quality='high' width='"
      + chartWidth
      + "' height='"
      + chartHeight
      + "' name='"
      + chartId
      + "' allowScriptAccess='always' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />\n");
     strBuf.append("\t\t</object>\n");
     strBuf.append("\t\t<!--END Code Block for Chart-->\n");
     return strBuf.substring(0);
        }
        /**
         * Converts a Boolean value to int value<br>
         * 
         * @param bool Boolean value which needs to be converted to int value 
         * @return int value correspoding to the boolean : 1 for true and 0 for false
         */
       public static int boolToNum(Boolean bool) {
     int num = 0;
     if (bool.booleanValue()) {
         num = 1;
     }
     return num;
        }
    }
     
      

  7.   

     注意 strBuf.append("\t\t<script LANGUAGE='Javascript' SRC='/FusionCharts/FusionCharts.js'></script>\n");
    说明在你的根目录下请放置一个文件夹FusionCharts 下面有这样一个js
    FusionCharts.js内容是
    /**
     * FusionCharts: Flash Player detection and Chart embed 
     * 
     * Morphed from SWFObject (http://blog.deconcept.com/swfobject/) under MIT License:
     * http://www.opensource.org/licenses/mit-license.php
     *
     */
    if(typeof infosoftglobal == "undefined") var infosoftglobal = new Object();
    if(typeof infosoftglobal.FusionChartsUtil == "undefined") infosoftglobal.FusionChartsUtil = new Object();
    infosoftglobal.FusionCharts = function(swf, id, w, h, debugMode, registerWithJS, c, scaleMode, lang){
     if (!document.getElementById) { return; }
     
     //Flag to see whether data has been set initially
     this.initialDataSet = false;
     
     //Create container objects
     this.params = new Object();
     this.variables = new Object();
     this.attributes = new Array();
     
     //Set attributes for the SWF
     if(swf) { this.setAttribute('swf', swf); }
     if(id) { this.setAttribute('id', id); }
     if(w) { this.setAttribute('width', w); }
     if(h) { this.setAttribute('height', h); }
     
     //Set background color
     if(c) { this.addParam('bgcolor', c); }
     
     //Set Quality 
     this.addParam('quality', 'high');
     
     //Add scripting access parameter
     this.addParam('allowScriptAccess', 'always');
     
     //Pass width and height to be appended as chartWidth and chartHeight
     this.addVariable('chartWidth', w);
     this.addVariable('chartHeight', h);
     //Whether in debug mode
     debugMode = debugMode ? debugMode : 0;
     this.addVariable('debugMode', debugMode);
     //Pass DOM ID to Chart
     this.addVariable('DOMId', id);
     //Whether to registed with JavaScript
     registerWithJS = registerWithJS ? registerWithJS : 0;
     this.addVariable('registerWithJS', registerWithJS);
     
     //Scale Mode of chart
     scaleMode = scaleMode ? scaleMode : 'noScale';
     this.addVariable('scaleMode', scaleMode);
     //Application Message Language
     lang = lang ? lang : 'EN';
     this.addVariable('lang', lang);
    }
    infosoftglobal.FusionCharts.prototype = {
     setAttribute: function(name, value){
      this.attributes[name] = value;
     },
     getAttribute: function(name){
      return this.attributes[name];
     },
     addParam: function(name, value){
      this.params[name] = value;
     },
     getParams: function(){
      return this.params;
     },
     addVariable: function(name, value){
      this.variables[name] = value;
     },
     getVariable: function(name){
      return this.variables[name];
     },
     getVariables: function(){
      return this.variables;
     },
     getVariablePairs: function(){
      var variablePairs = new Array();
      var key;
      var variables = this.getVariables();
      for(key in variables){
       variablePairs.push(key +"="+ variables[key]);
      }
      return variablePairs;
     },
     getSWFHTML: function() {
      var swfNode = "";
      if (navigator.plugins && navigator.mimeTypes && navigator.mimeTypes.length) { 
       // netscape plugin architecture   
       swfNode = '<embed type="application/x-shockwave-flash" src="'+ this.getAttribute('swf') +'" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'"  ';
       swfNode += ' id="'+ this.getAttribute('id') +'" name="'+ this.getAttribute('id') +'" ';
       var params = this.getParams();
        for(var key in params){ swfNode += [key] +'="'+ params[key] +'" '; }
       var pairs = this.getVariablePairs().join("&");
        if (pairs.length > 0){ swfNode += 'flashvars="'+ pairs +'"'; }
       swfNode += '/>';
      } else { // PC IE   
       swfNode = '<object id="'+ this.getAttribute('id') +'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'">';
       swfNode += '<param name="movie" value="'+ this.getAttribute('swf') +'" />';
       var params = this.getParams();
       for(var key in params) {
        swfNode += '<param name="'+ key +'" value="'+ params[key] +'" />';
       }
       var pairs = this.getVariablePairs().join("&");   
       if(pairs.length > 0) {swfNode += '<param name="flashvars" value="'+ pairs +'" />';}
       swfNode += "</object>";
      }
      return swfNode;
     },
     setDataURL: function(strDataURL){
      //This method sets the data URL for the chart.
      //If being set initially
      if (this.initialDataSet==false){
       this.addVariable('dataURL',strDataURL);
       //Update flag
       this.initialDataSet = true;
      }else{
       //Else, we update the chart data using External Interface
       //Get reference to chart object
       var chartObj = infosoftglobal.FusionChartsUtil.getChartObject(this.getAttribute('id'));
       chartObj.setDataURL(strDataURL);
      }
     },
     setDataXML: function(strDataXML){
      //If being set initially
      if (this.initialDataSet==false){
       //This method sets the data XML for the chart INITIALLY.
       this.addVariable('dataXML',strDataXML);
       //Update flag
       this.initialDataSet = true;
      }else{
       //Else, we update the chart data using External Interface
       //Get reference to chart object
       var chartObj = infosoftglobal.FusionChartsUtil.getChartObject(this.getAttribute('id'));
       chartObj.setDataXML(strDataXML);
      }
     },
     render: function(elementId){
      var n = (typeof elementId == 'string') ? document.getElementById(elementId) : elementId;
      n.innerHTML = this.getSWFHTML();
      return true;  
     }
    }
    // ------------ Fix for Out of Memory Bug in IE in FP9 ---------------//
    /* Fix for video streaming bug */
    infosoftglobal.FusionChartsUtil.cleanupSWFs = function() {
     if (window.opera || !document.all) return;
     var objects = document.getElementsByTagName("OBJECT");
     for (var i=0; i < objects.length; i++) {
      objects[i].style.display = 'none';
      for (var x in objects[i]) {
       if (typeof objects[i][x] == 'function') {
        objects[i][x] = function(){};
       }
      }
     }
    }
    // Fixes bug in fp9
    infosoftglobal.FusionChartsUtil.prepUnload = function() {
     __flash_unloadHandler = function(){};
     __flash_savedUnloadHandler = function(){};
     if (typeof window.onunload == 'function') {
      var oldUnload = window.onunload;
      window.onunload = function() {
       infosoftglobal.FusionChartsUtil.cleanupSWFs();
       oldUnload();
      }
     } else {
      window.onunload = infosoftglobal.FusionChartsUtil.cleanupSWFs;
     }
    }
    if (typeof window.onbeforeunload == 'function') {
     var oldBeforeUnload = window.onbeforeunload;
     window.onbeforeunload = function() {
      infosoftglobal.FusionChartsUtil.prepUnload();
      oldBeforeUnload();
     }
    } else {
     window.onbeforeunload = infosoftglobal.FusionChartsUtil.prepUnload;
    }
    /* Add Array.push if needed (ie5) */
    if (Array.prototype.push == null) { Array.prototype.push = function(item) { this[this.length] = item; return this.length; }}
    /* Function to return Flash Object from ID */
    infosoftglobal.FusionChartsUtil.getChartObject = function(id)
    {
      if (window.document[id]) {
          return window.document[id];
      }
      if (navigator.appName.indexOf("Microsoft Internet")==-1) {
        if (document.embeds && document.embeds[id])
          return document.embeds[id]; 
      } else {
        return document.getElementById(id);
      }
    }
    /* Aliases for easy usage */
    var getChartFromId = infosoftglobal.FusionChartsUtil.getChartObject;
    var FusionCharts = infosoftglobal.FusionCharts;
     
    下面就createChart这个静态的方法进行解读!
     createChart(String chartSWF, String strURL,String strXML, String chartId, int chartWidth,     inchartHeight,
     boolean debugMode, boolean registerWithJS)
      注意该方法需要传递的参数!
     String chartSWF就是一个flash也就是所谓的模板
     String strURL可以传递空字符串
     String strXML 就是我们用java语言写的一个特定的xml文档[注意该文档需要一定的格式!将在下面讲解]
    String chartId 就是整个图形的标题[就是说明要显示图形的意图]; int chartWidth就是生成图形的宽度;
      int chartHeight就是生成图形的高度!
       boolean debugMode是否为调试模式 一般为false;
     boolean registerWithJS 是否将js一起发布一般为了保证代码的绝对安全 为false
     
    具体的做法已经完成 下面就讲一下调用 在action或者servlet中  我们只需要
      String  strChartCode=FusionChartsCreator.createChart("模板", "","用java生成的xml文档","标题", 600, 500, false, false);
     PrintWriter out = response.getWriter();
    out.print(strChartCode);
    return null;
      

  8.   

    用JasperReport吧 感觉这个最简单 功能也挺强大 我们公司就用这个,免费。
      

  9.   

    网上搜索一下JasperReport有例子的
      

  10.   

    import java.io.FileOutputStream;
    import java.io.IOException;import org.apache.poi.hssf.usermodel.HSSFSheet;
    import org.apache.poi.hssf.usermodel.HSSFWorkbook;
    import org.apache.poi.poifs.filesystem.POIFSFileSystem;public class test { /**
     * @param args
     */
    public static void main(String[] args) {
    // TODO Auto-generated method stub

    try {
    FileInputStream fi = new FileInputStream("E:\\aaaa\\ab.xls");
    POIFSFileSystem fs = new POIFSFileSystem(fi);
    HSSFWorkbook wk = new HSSFWorkbook(fs);
    HSSFSheet sheet = wk.getSheetAt(0);
    //sheet.getRow(0).getCell(0).setCellValue("12");
    //sheet.getRow(1).getCell(0).setCellValue("22");
    //sheet.getRow(2).getCell(0).setCellValue("33");
    //fi.close();

    //sheet.setActive(true);
    sheet.setForceFormulaRecalculation(true);

    FileOutputStream fout=new FileOutputStream("E:\\aaaa\\a.xls");
    wk.write(fout);
    fi.close();
    fout.flush();
    fout.close();
    } catch (FileNotFoundException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    } catch (IOException e1) {
    // TODO: handle exception
    e1.printStackTrace();
    } catch (Exception e2) {
    // TODO: handle exception
    e2.printStackTrace();
    }

    }}
      

  11.   

    转为pdf吗?试试这个: http://www.mietian.net/pdf/