亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java使用poi實現大數據量導出為EXCEL

發布時間:2020-06-30 04:02:43 來源:網絡 閱讀:4371 作者:c_to_p 欄目:大數據

總體的實現思想為:

每次查詢出2w數據,并寫入到臨時文件

然后把這些文件寫入到一個EXCEL里邊,或者把這些文件壓縮為zip文件,然后把Zip文件提供給下載(這里使用zip打包是因為,在Linux上也能進行Zip打包)。

//這個zip打包工具類
package net.szh.zip;  
  
import java.io.File;  
  
import org.apache.tools.ant.Project;  
import org.apache.tools.ant.taskdefs.Zip;  
import org.apache.tools.ant.types.FileSet;  
  
public class ZipCompressorByAnt {  
  
    private File zipFile;  
  
    public ZipCompressorByAnt(String pathName) {  
        zipFile = new File(pathName);  
    }  
      
    public void compress(String srcPathName) {  
        File srcdir = new File(srcPathName);  
        if (!srcdir.exists())  
            throw new RuntimeException(srcPathName + "不存在!");  
          
        Project prj = new Project();  
        Zip zip = new Zip();  
        zip.setProject(prj);  
        zip.setDestFile(zipFile);  
        FileSet fileSet = new FileSet();  
        fileSet.setProject(prj);  
        fileSet.setDir(srcdir);  
        //fileSet.setIncludes("**/*.java"); 包括哪些文件或文件夾 eg:zip.setIncludes("*.java");  
        //fileSet.setExcludes(...); 排除哪些文件或文件夾  
        zip.addFileset(fileSet);  
          
        zip.execute();  
    }  
}
業務處理
   import java.util.Map;

    import com.eos.common.transaction.ITransactionManager;
    import com.eos.common.transaction.TransactionManagerFactory;
    import com.eos.system.annotation.Bizlet;
    import com.pns.framework.dao.Dao;
    import com.pns.framework.execl.Excel;
    import com.pns.framework.filepath.ExportExeclUtil;
    import com.pns.framework.filepath.FilePath;
    import commonj.sdo.DataObject;
    @Bizlet("")
    public class Aeanalysis {    
        private  ExportExeclUtil util= new ExportExeclUtil();
        /**
         * 變電站
         *
         */
        @Bizlet("")
        public String export4boassets(Map<String,String> map,String nameSqlid) {
             String tempFileName ;
             String fileName ;
             ITransactionManager manager = TransactionManagerFactory.getTransactionManager();
             
             DataObject[] objects={};
            try {
                /**
                 *在這兒得到總共的條數,再除每個文件的條數,得到需要多少個文件,求余如果不為零,
                 *則需要循環的次數即為文件數,如果不為零則為文件數+1;文件寫完之后進行壓縮                 
                 *,把壓縮文件的地址返回到流的jsp中。
                 */
                tempFileName = FilePath.getTempFilePath("02_02_01.xls");//零時文件   例:xxx.xls
                fileName = FilePath.getTemplatePath("aeanalysis/uic01_001.xls");//模板文件       例: pamanagement/uic02_001_004.xls
                manager.begin();
                objects = Dao.query(nameSqlid, map);
                manager.commit();
                //變電站標識    電網變電站標識    變電站名稱    電壓等級    變電站地址    管理單位    運行狀態    變電站標識    變電站業務系統ID    變電站名稱    電壓等級    變電站地址    管理單位    運行狀態    備注
                String[] fieldArrStr = new String[] {"SUBS_ID", "PMS_SUBS_ID", "SUBS_NAME", "VOLT_CODE","SUBS_ADDR","ORG_NAME","RUN_STATUS","PMS_ID","PMS_GLOBEID",
                        "PMS_SUBS_NAME","PMS_VOLT_CODE","PMS_SUBS_ADDR","PMS_ORG_NAME","PMS_RUN_STATUS",
                        "REMARK"};
             util.exportExcelToTemp(fileName, 2, objects, fieldArrStr, tempFileName);
            } catch (RuntimeException e) {
                manager.rollback();
                tempFileName="ex";
            }
             
             return tempFileName;
        }
        /**
     * 生成只有數據的execl到臨時文件夾下
     * 
     * @param args
     * @throws IOException
     */
    public  boolean exportExcelToTemp(String temFile,int beginRowIndex,Object[] objects,String[] fieldArrStr,String tempPath) {
        boolean flag;
        FileOutputStream fos = null;
        
        try {
            this.getWorkBook(temFile);
            this.getSheet();
            this.setDataRow(beginRowIndex, objects, fieldArrStr);
            fos = new FileOutputStream(tempPath);
            workBook.write(fos);
            flag=true;
        } catch (IOException e) {
            // TODO 自動生成 catch 塊
            flag=false;
        } finally {
            try {
                if(fos != null){
                    fos.close();
                }
                
            } catch (IOException e) {
                // TODO 自動生成 catch 塊
                e.printStackTrace();
            }
        }
        return flag;
    }
  }

jsp文件

<%@page pageEncoding="UTF-8"
%><%@page contentType="text/plain; charset=utf-8" 
%><%@page import="org.apache.commons.fileupload.*" 
%><%@page import="java.net.URLEncoder"
%><%@page import="java.io.BufferedOutputStream"
%><%@page import="java.io.FileInputStream"
%><%@page import="java.io.IOException"
%><%@page import="java.util.Date"
%><%@page import="java.text.SimpleDateFormat"
%>
<%String path =request.getParameter("path");
    String filename=request.getParameter("filename");
    //String time=request.getParameter("time");
    response.reset();//可以加也可以不加
    response.setContentType("application/x-download");
    filename = URLEncoder.encode(filename,"UTF-8");
    SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//設置日期格式
    String dd=df.format(new Date());
    //System.out.println(dd);// new Date()為獲取當前系統時間
    
    response.addHeader("Content-Disposition", "p_w_upload; filename=" +dd+"_"+filename);
    
    BufferedOutputStream bos = null;  
    FileInputStream fis = null;  
    try {   
        fis = new FileInputStream(path);  
        bos = new BufferedOutputStream(response.getOutputStream());  
        byte[] buffer = new byte[1024];  
        while(fis.read(buffer) != -1){  
              bos.write(buffer);  
        }  
        response.flushBuffer();
        out.clear();
    }catch(IOException e) {  
        e.printStackTrace();  
    }finally {  
         fis.close();
        bos.close();
    }%>


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

泗洪县| 望奎县| 衢州市| 德阳市| 中宁县| 潮安县| 岚皋县| 镇康县| 措勤县| 仪征市| 澎湖县| 兰溪市| 邯郸县| 锦州市| 凌源市| 博爱县| 孟州市| 安顺市| 琼海市| 陇川县| 平凉市| 喜德县| 武宣县| 池州市| 安平县| 宁强县| 于都县| 长兴县| 玛沁县| 长汀县| 敖汉旗| 巴南区| 新昌县| 白银市| 和林格尔县| 子洲县| 江都市| 贵州省| 南和县| 黑河市| 象山县|