91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Java怎么添加和讀取Excel公式

發布時間:2021-08-27 14:19:34 來源:億速云 閱讀:126 作者:chen 欄目:編程語言

本篇內容主要講解“Java怎么添加和讀取Excel公式”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Java怎么添加和讀取Excel公式”吧!

操作excel表格用公式來處理數據時,可通過創建公式來運算數據,或通過讀取公式來獲取數據信息來源。本文以通過Java代碼來演示在Excel中創建及讀取公式的方法。這里使用了Excel Java類庫(Free Spire.XLS for Java 免費版),在官網下載獲取文件包后,解壓,將lib文件夾下的jar文件導入Java程序;或者通過maven倉庫下載并導入。導入結果如下:

Java怎么添加和讀取Excel公式

Java 代碼示例

1. 創建公式

import com.spire.xls.*;
 
 public class AddFormula {
     public static void main(String[] args) {
         //創建Workbook對象
         Workbook wb = new Workbook();
 
         //獲取第一個工作表
         Worksheet sheet = wb.getWorksheets().get(0);
 
         //聲明兩個變量
         int currentRow = 1;
         String currentFormula = null;
 
         //設置列寬
         sheet.setColumnWidth(1, 32);
         sheet.setColumnWidth(2, 16);
 
         //寫入用于測試的數據到單元格
         sheet.getCellRange(currentRow,1).setValue("測試數據:");
         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("結果:");
 
         //設置單元格格式
         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);
 
         //算數運算
         currentFormula = "=1/2+3*4";
         sheet.getCellRange(++currentRow,1).setText(currentFormula);
         sheet.getCellRange(currentRow,2).setFormula(currentFormula);
 
         //日期函數
         currentFormula = "=TODAY()";
         sheet.getCellRange(++currentRow,1).setText(currentFormula);
         sheet.getCellRange(currentRow,2).setFormula(currentFormula);
         sheet.getCellRange(currentRow,2).getStyle().setNumberFormat("YYYY/MM/DD");
 
         //時間函數
         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函數
         currentFormula = "=IF(B1=5,\"Yes\",\"No\")";
         sheet.getCellRange(++currentRow,1).setText(currentFormula);
         sheet.getCellRange(currentRow,2).setFormula(currentFormula);
 
         //PI函數
         currentFormula = "=PI()";
         sheet.getCellRange(++currentRow,1).setText(currentFormula);
         sheet.getCellRange(currentRow,2).setFormula(currentFormula);
 
         //三角函數
         currentFormula = "=SIN(PI()/6)";
         sheet.getCellRange(++currentRow,1).setText(currentFormula);
         sheet.getCellRange(currentRow,2).setFormula(currentFormula);
 
         //計數函數
         currentFormula = "=Count(B1:F1)";
         sheet.getCellRange(++currentRow,1).setText(currentFormula);
         sheet.getCellRange(currentRow,2).setFormula(currentFormula);
 
         //最大值函數
         currentFormula = "=MAX(B1:F1)";
         sheet.getCellRange(++currentRow,1).setText(currentFormula);
         sheet.getCellRange(currentRow,2).setFormula(currentFormula);
 
         //平均值函數
         currentFormula = "=AVERAGE(B1:F1)";
         sheet.getCellRange(++currentRow,1).setText(currentFormula);
         sheet.getCellRange(currentRow,2).setFormula(currentFormula);
 
         //求和函數
         currentFormula = "=SUM(B1:F1)";
         sheet.getCellRange(++currentRow,1).setText(currentFormula);
         sheet.getCellRange(currentRow,2).setFormula(currentFormula);
 
         //保存文檔
         wb.saveToFile("AddFormulas.xlsx",FileFormat.Version2013);
         wb.dispose();
     }
 }

公式創建結果:

Java怎么添加和讀取Excel公式

2. 讀取公式

import com.spire.xls.*;
 
 public class ReadFormula {
     public static void main(String[] args) {
         //加載Excel文檔
         Workbook wb = new Workbook();
         wb.loadFromFile("AddFormulas.xlsx");
 
         //獲取第一個工作表
         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());
             }
         }
     }
 }

公式讀取結果:

Java怎么添加和讀取Excel公式

到此,相信大家對“Java怎么添加和讀取Excel公式”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

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

AI

汶川县| 祁门县| 三穗县| 静安区| 正阳县| 齐齐哈尔市| 屏东县| 绥阳县| 兴国县| 黔西县| 康定县| 阿拉善左旗| 阿坝县| 上林县| 外汇| 天津市| 五台县| 南阳市| 桂阳县| 习水县| 德兴市| 鄂温| 横山县| 壤塘县| 和平县| 宜丰县| 鄢陵县| 东乡族自治县| 赣榆县| 兴文县| 云龙县| 蓬溪县| 康保县| 永德县| 寻乌县| 石屏县| 武陟县| 通山县| 白沙| 木兰县| 胶州市|