真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何通過Java代碼實(shí)現(xiàn)創(chuàng)建和讀取Excel公式-創(chuàng)新互聯(lián)

如何通過Java代碼實(shí)現(xiàn)創(chuàng)建和讀取Excel公式?相信大部分人都還沒學(xué)會(huì)這個(gè)技能,為了讓大家學(xué)會(huì),給大家總結(jié)了以下內(nèi)容,話不多說,一起往下看吧。

創(chuàng)新互聯(lián)建站-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比繁昌網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式繁昌網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋繁昌地區(qū)。費(fèi)用合理售后完善,十年實(shí)體公司更值得信賴。

這里使用了Excel Java類庫(Free Spire.XLS for Java 免費(fèi)版),在官網(wǎng)下載獲取文件包后,解壓,將lib文件夾下的jar文件導(dǎo)入Java程序;或者通過maven倉庫下載并導(dǎo)入。導(dǎo)入結(jié)果如下:
如何通過Java代碼實(shí)現(xiàn)創(chuàng)建和讀取Excel公式

1. 創(chuàng)建公式

import com.spire.xls.*;

public class AddFormula {
   public static void main(String[] args) {
     //創(chuàng)建Workbook對(duì)象
     Workbook wb = new Workbook();

     //獲取第一個(gè)工作表
     Worksheet sheet = wb.getWorksheets().get(0);

     //聲明兩個(gè)變量
     int currentRow = 1;
     String currentFormula = null;

     //設(shè)置列寬
     sheet.setColumnWidth(1, 32);
     sheet.setColumnWidth(2, 16);

     //寫入用于測(cè)試的數(shù)據(jù)到單元格
     sheet.getCellRange(currentRow,1).setValue("測(cè)試數(shù)據(jù):");
     sheet.getCellRange(currentRow,2).setNumberValue(1);
     sheet.getCellRange(currentRow,3).setNumberValue(2);
     sheet.getCellRange(currentRow,4).setNumberValue(3);
     sheet.getCellRange(currentRow,5).setNumberValue(4);
     sheet.getCellRange(currentRow,6).setNumberValue(5);

     //寫入文本
     currentRow += 2;
     sheet.getCellRange(currentRow,1).setValue("公式:") ; ;
     sheet.getCellRange(currentRow,2).setValue("結(jié)果:");

     //設(shè)置單元格格式
     CellRange range = sheet.getCellRange(currentRow,1,currentRow,2);
     range.getStyle().getFont().isBold(true);
     range.getStyle().setKnownColor(ExcelColors.LightGreen1);
     range.getStyle().setFillPattern(ExcelPatternType.Solid);
     range.getStyle().getBorders().getByBordersLineType(BordersLineType.EdgeBottom).setLineStyle(LineStyleType.Medium);

     //算數(shù)運(yùn)算
     currentFormula = "=1/2+3*4";
     sheet.getCellRange(++currentRow,1).setText(currentFormula);
     sheet.getCellRange(currentRow,2).setFormula(currentFormula);

     //日期函數(shù)
     currentFormula = "=TODAY()";
     sheet.getCellRange(++currentRow,1).setText(currentFormula);
     sheet.getCellRange(currentRow,2).setFormula(currentFormula);
     sheet.getCellRange(currentRow,2).getStyle().setNumberFormat("YYYY/MM/DD");

     //時(shí)間函數(shù)
     currentFormula = "=NOW()";
     sheet.getCellRange(++currentRow,1).setText(currentFormula);
     sheet.getCellRange(currentRow,2).setFormula(currentFormula);
     sheet.getCellRange(currentRow,2).getStyle().setNumberFormat("H:MM AM/PM");

     //IF函數(shù)
     currentFormula = "=IF(B1=5,\"Yes\",\"No\")";
     sheet.getCellRange(++currentRow,1).setText(currentFormula);
     sheet.getCellRange(currentRow,2).setFormula(currentFormula);

     //PI函數(shù)
     currentFormula = "=PI()";
     sheet.getCellRange(++currentRow,1).setText(currentFormula);
     sheet.getCellRange(currentRow,2).setFormula(currentFormula);

     //三角函數(shù)
     currentFormula = "=SIN(PI()/6)";
     sheet.getCellRange(++currentRow,1).setText(currentFormula);
     sheet.getCellRange(currentRow,2).setFormula(currentFormula);

     //計(jì)數(shù)函數(shù)
     currentFormula = "=Count(B1:F1)";
     sheet.getCellRange(++currentRow,1).setText(currentFormula);
     sheet.getCellRange(currentRow,2).setFormula(currentFormula);

     //大值函數(shù)
     currentFormula = "=MAX(B1:F1)";
     sheet.getCellRange(++currentRow,1).setText(currentFormula);
     sheet.getCellRange(currentRow,2).setFormula(currentFormula);

     //平均值函數(shù)
     currentFormula = "=AVERAGE(B1:F1)";
     sheet.getCellRange(++currentRow,1).setText(currentFormula);
     sheet.getCellRange(currentRow,2).setFormula(currentFormula);

     //求和函數(shù)
     currentFormula = "=SUM(B1:F1)";
     sheet.getCellRange(++currentRow,1).setText(currentFormula);
     sheet.getCellRange(currentRow,2).setFormula(currentFormula);

     //保存文檔
     wb.saveToFile("AddFormulas.xlsx",FileFormat.Version2013);
     wb.dispose();
   }
}

公式創(chuàng)建結(jié)果:
如何通過Java代碼實(shí)現(xiàn)創(chuàng)建和讀取Excel公式

2.讀取公式

import com.spire.xls.*;

public class ReadFormula {
   public static void main(String[] args) {
     //加載Excel文檔
     Workbook wb = new Workbook();
     wb.loadFromFile("AddFormulas.xlsx");

     //獲取第一個(gè)工作表
     Worksheet sheet = wb.getWorksheets().get(0);

     //遍歷B1到B13的單元格
     for (Object cell: sheet.getCellRange("B1:B13"))
     {
       CellRange cellRange = (CellRange)cell;

       //判斷單元格是否含有公式
       if (cellRange.hasFormula())
       {
         //打印單元格及公式
         String certainCell = String.format("單元格[%d, %d]含有公式:", cellRange.getRow(), cellRange.getColumn());
         System.out.println(certainCell + cellRange.getFormula());
       }
     }
   }
}

公式讀取結(jié)果:
如何通過Java代碼實(shí)現(xiàn)創(chuàng)建和讀取Excel公式

看完上述內(nèi)容,你們掌握通過Java代碼實(shí)現(xiàn)創(chuàng)建和讀取Excel公式的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。


當(dāng)前題目:如何通過Java代碼實(shí)現(xiàn)創(chuàng)建和讀取Excel公式-創(chuàng)新互聯(lián)
URL標(biāo)題:http://weahome.cn/article/peoej.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部