文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Java怎么添加和读取Excel公式

2023-06-02 13:16

关注

本篇内容主要讲解“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公式”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯