gpt4 book ai didi

java - Apache POI : How to format a column of cells?

转载 作者:行者123 更新时间:2023-12-02 07:11:34 26 4
gpt4 key购买 nike

我是 Apache POI 的新手,我正在尝试格式化一列单元格。我已经使用适当的值创建了电子表格。我要做的就是更改 mm 的格式:ss.0 至 HH:MM:SS。

如果有人能够对此提供一些见解,包括代码,我们将非常感激。

欢迎所有帮助。

谢谢。

最佳答案

org.apache.poi.ss.usermodel.DateUtil

convertTime(java.lang.String timeStr) 
Converts a string of format "HH:MM" or "HH:MM:SS" to its (Excel) numeric equivalent

应该可以解决您的要求。更多详情请学习-http://poi.apache.org/apidocs/org/apache/poi/ss/usermodel/DateUtil.html

您还可以检查以下程序是否可以为您提供一些见解 -

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.CellStyle;
import org.apache.poi.ss.usermodel.CreationHelper;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;

public class ExcelExample {

public static void main(String[] args) {
InputStream inp;
try {
inp = new FileInputStream("workbook.xls");

Workbook wb = new HSSFWorkbook(inp);
CreationHelper createHelper = wb.getCreationHelper();

Sheet sheet = wb.getSheetAt(0);
for (Row row : sheet) {

Cell cell = row.getCell(1);
CellStyle cellStyle = wb.createCellStyle();
cellStyle.setDataFormat(createHelper.createDataFormat().getFormat("hh:mm:ss"));
cell.setCellStyle(cellStyle);

}

// Write the output to a file
FileOutputStream fileOut = new FileOutputStream("workbook.xls");
wb.write(fileOut);
fileOut.close();
System.out.println("Done...");
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

}

}

谢谢

关于java - Apache POI : How to format a column of cells?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15450938/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com