溫馨提示×

溫馨提示×

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

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

java怎么生成excel并導(dǎo)出到對應(yīng)位置

發(fā)布時(shí)間:2022-02-07 15:37:21 來源:億速云 閱讀:161 作者:iii 欄目:開發(fā)技術(shù)

本篇內(nèi)容介紹了“java怎么生成excel并導(dǎo)出到對應(yīng)位置”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

生成excel并導(dǎo)出到對應(yīng)位置

package tech.BurtonPratice; 
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
 
import java.io.File;
import java.io.FileOutputStream;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
@RunWith(JUnit4.class)
public class PoiExcel {
    @Test
    public void exportExcel() {
        Map<String, Integer> accts = new HashMap<String, Integer>() {
            {
                put("123456", 125);
                put("123451", 121);
                put("123457", 124);
                put("123459", 122); 
            }
        };
 
        // 創(chuàng)建HSSFWorkbook對象(excel的文檔對象)
        HSSFWorkbook wb = new HSSFWorkbook();
        // 建立新的sheet對象(excel的表單)
        HSSFSheet sheet = wb.createSheet("FXT");
        // 在sheet里創(chuàng)建第一行,參數(shù)為行索引(excel的行),可以是0~65535之間的任何一個(gè)
        HSSFRow row1 = sheet.createRow(0);
        // 創(chuàng)建單元格(excel的單元格,參數(shù)為列索引,可以是0~255之間的任何一個(gè)
        HSSFCell cellOne = row1.createCell(0);
        // 設(shè)置單元格內(nèi)容
        cellOne.setCellValue("賬號");
        HSSFCell cellTwo = row1.createCell(1);
        // 設(shè)置單元格內(nèi)容
        cellTwo.setCellValue("金額");
 
        //行數(shù)
        int rowNum = 1;
        //遍歷hashmap
        Iterator iterator = accts.entrySet().iterator();
        while (iterator.hasNext()) {
            Map.Entry entry = (Map.Entry) iterator.next();
            Object key = entry.getKey();
            Object val = entry.getValue();
            //創(chuàng)建一行行記錄
            rowNum++;
            // 在sheet里創(chuàng)建下一行
            HSSFRow newRow = sheet.createRow(rowNum);
            // 創(chuàng)建單元格并設(shè)置單元格內(nèi)容
            newRow.createCell(0).setCellValue((String) key);
            newRow.createCell(1).setCellValue((Integer) val); 
        }
 
        // 第六步,將文件存到指定位置
        try {
            String path = "F:/a/b.xlsx";
            File file = new File(path);
            //如果已經(jīng)存在則刪除
            if (file.exists()) {
                file.delete();
            }
            //檢查父包是否存在
            File parentFile = file.getParentFile();
            if (!parentFile.exists()) {
                parentFile.mkdirs();
            }
            //創(chuàng)建文件
            file.createNewFile();
            FileOutputStream fout = new FileOutputStream(path);
            wb.write(fout);
            String str = "導(dǎo)出成功!";
            System.out.println(str);
            fout.close();
        } catch (Exception e) {
            e.printStackTrace();
            String str1 = "導(dǎo)出失敗!";
            System.out.println(str1);
        }
        // 合并單元格CellRangeAddress構(gòu)造參數(shù)依次表示起始行,截至行,起始列, 截至列
        //sheet.addMergedRegion(new CellRangeAddress(0, 0, 0, 3));  
    } 
}

生成excel圖:

java怎么生成excel并導(dǎo)出到對應(yīng)位置

指定路徑導(dǎo)入導(dǎo)出文件

使用JFileChooser ,可以彈出對話框,然后選擇指定路徑上的文檔。

讀取指定路徑下的文件

private JFileChooser fileChooser = new JFileChooser(".");
private void getInputFile() throws Exception {undefined
        fileChooser.setFileSelectionMode(JFileChooser.FILES_ONLY);
        fileChooser.setDialogTitle("選擇輸入Excel文件");
        int ret = fileChooser.showOpenDialog(null);
        if (ret == JFileChooser.APPROVE_OPTION) {undefined
            File inputFile = fileChooser.getSelectedFile().getAbsoluteFile();
            FileInputStream input = new FileInputStream(inputFile );
            // 然后根據(jù)實(shí)際情況去操作input即可。
        }
    }

將文件導(dǎo)出至指定路徑

    private boolean getOutputPath() {undefined
        boolean pathFlg = true;
        fileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
        fileChooser.setDialogTitle("選擇文件導(dǎo)出的路徑");
        int ret = fileChooser.showOpenDialog(null);
        if (ret == JFileChooser.APPROVE_OPTION) {undefined
            String outFile = fileChooser.getSelectedFile().getAbsolutePath();
            System.out.println("fileChooser.outFile:" + outFile);
           // outFile可選擇的路徑。 
        } else {undefined
            pathFlg = false;
        }
        return pathFlg;
    }

“java怎么生成excel并導(dǎo)出到對應(yīng)位置”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI