溫馨提示×

溫馨提示×

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

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

springboot poi

發(fā)布時間:2020-07-11 02:55:39 來源:網(wǎng)絡 閱讀:1474 作者:btmaxyyq 欄目:開發(fā)技術

首先pom.xml中加入poi

    <!-- poi -->
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <version>3.17</version>
        </dependency>

如下單元測試代碼


@RunWith(SpringJUnit4Cla***unner.class) // SpringJUnit支持,由此引入Spring-Test框架支持!
@SpringBootTest(classes = DemoT002Application.class)
public class ExcleTest {
    @Autowired
    private UserAccountOrgLog_Dao userAccountOrgLog_Dao;

    @Test
    public void getValues() throws Exception {
        List<String> list = new LinkedList<String>();//業(yè)務編號
        List<String> listC = new LinkedList<String>();//業(yè)務類型 中文
        InputStream is = new FileInputStream("D:/資金動作.xlsx");
        // 構造 XSSFWorkbook 對象,strPath 傳入文件路徑
        XSSFWorkbook xwb = new XSSFWorkbook(is);
        // 讀取第一章表格內(nèi)容
        XSSFSheet sheet = xwb.getSheetAt(0);
        // 定義 row、cell
        XSSFRow row;
        Cell cell;
        // 循環(huán)輸出表格中的內(nèi)容
        for (int i = sheet.getFirstRowNum() + 1; i < sheet.getPhysicalNumberOfRows(); i++) {
            row = sheet.getRow(i);
            for (int j = 0; j < row.getLastCellNum(); j++) {
                // 通過 row.getCell(j).toString() 獲取單元格內(nèi)容,

                cell = row.getCell(j);

                //業(yè)務類型
                if(j == 1) {
                    listC.add(String.valueOf(cell.getStringCellValue()));
                }
                //業(yè)務編號
                if (j == 2) {
                    list.add(String.valueOf((int) cell.getNumericCellValue()));
                }

            }
        }

        //數(shù)據(jù)庫判斷是否存在該操作 account.user_account_org_log
        List<String> list2 = new LinkedList<String>();
        for (String type : list) {
             int countNum = userAccountOrgLog_Dao.getCount(type);
             if(countNum==0) {
                 list2.add(type);
             }
//           System.out.println(type+":"+countNum);
        }
        System.out.println("size:" + list2.size());
        System.out.println("size:" + listC.size());
        for (String string : listC) {
            System.out.println("無listC:"+string);
        }
        for (String string : list2) {
            System.out.println("無操作:"+string);
        }
    }

}
向AI問一下細節(jié)

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

AI