- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
注意:我到处搜索过,这不是重复的问题。
我正在尝试使用 Apache POI (poi-4.1.0) 和 Java,根据同一行中单元格的内容在电子表格中创建/插入固定数量的"new"行 - 请参阅下图(“|”代表分栏符):
1 Foo | 1001、1002、1003 |是
2 酒吧 | 1010 |是
3 自 | 2500、1500、5200 |是
本质上,会发生的情况是,我将在第 1 行和第 2 行之间插入两个新行,并在第 3 行之后再次插入,复制源行中的所有数据,只不过不是具有三个值(或者可能有多个值) )在第二列中,只有一个 - 请参见下图(“|”代表分栏符):
1 Foo | 1001 |是
2 Foo1 | 1002 |是
3 Foo2 | 1003 |是
4 酒吧 | 1001 |是
5 自已 | 2500 |是
6 Slf1 | 6 1500 |是
7 Slf2 | 7 5200 |是
仅在具有多个值的单元格上重复此过程,直到读取并处理文件中的所有行。我应该注意,新行将附加在同一文件中。
这是我的代码(我使用 this page 上的代码作为模板,并尝试更新它以匹配我正在使用的 POI 的当前版本):
public class XLSXFileAdd {
private static final String prpfile = "src/main/resources/fileinfo/directories.properties";
public static void main(String[] args) throws Exception{
File infile = new File(XLSXFileAdd.getCIFile()); //Gets the fully-qualified path to the input file.
XSSFWorkbook workbook = new XSSFWorkbook(new FileInputStream(infile));
XSSFSheet sheet = workbook.getSheet("Sheet1"); //Opens the XLSX document at the specified worksheet.
String msNum; //The string that will hold the contents of the cell with multiple values.
XLSXFileAdd xfa = new XLSXFileAdd();
for(int i = 1; i <= sheet.getLastRowNum(); i++){
Row row = sheet.getRow(i);
msNum = String.valueOf(row.getCell(2));
if(i == 2 && msNum.length() > 4){ //If the current column in the row is equal to the cell that could contain multiple values and the number of values in the cell are greater than 1 (length is greater than 4 for multiple values)
xfa.copyRows(workbook,sheet,i, i);
}else{
//Read and parse the file normally (the method used here works without issue so I have not copied it to reduce clutter and confusion).
}
}
}
private static String getCIFile(){
File propfile = new File(prpfile);
Properties properties = new Properties();
try{
FileInputStream fis = new FileInputStream(propfile);
properties.load(fis);
}catch(IOException ex){
Logger.getLogger(XLSXFileAdd.class.getName()).log(Level.SEVERE, null, ex);
}
String filename = (String)properties.get("xlsx.input.custdata");
return filename;
}
private void copyRows(XSSFWorkbook workbook,XSSFSheet worksheet,int sourceRowNum, int destinationRowNum){
//Get source & destination row
Row newRow = worksheet.getRow(destinationRowNum);
Row sourceRow = worksheet.getRow(sourceRowNum);
//Check if the row will be overwritten; if the row is populated, push down all rows by one and create a new row
if(newRow != null){
worksheet.shiftRows(destinationRowNum,worksheet.getLastRowNum(), 1);
}else{
newRow = worksheet.createRow(destinationRowNum);
}
//Loop through source columns to add to new row.
for(int i = 0; i < sourceRow.getLastCellNum(); i++){
Cell oldCell = sourceRow.getCell(i);
Cell newCell = newRow.createCell(i);
//If the old is not populated (null), jump to next cell
if(oldCell == null){
newCell = null;
continue;
}
//Set newly created cells to the style of the source cell
newCell.setCellStyle(oldCell.getCellStyle());
//Set the cell data type
newCell.setCellType(oldCell.getCellType());
//Set the value of the cell
switch(oldCell.getCellType()){
case _NONE:
newCell.setCellValue(oldCell.getStringCellValue());
break;
case BLANK:
break;
case BOOLEAN:
newCell.setCellValue(oldCell.getBooleanCellValue());
break;
case ERROR:
newCell.setCellErrorValue(oldCell.getErrorCellValue());
break;
case FORMULA:
newCell.setCellFormula(oldCell.getCellFormula());
break;
case NUMERIC:
newCell.setCellValue(oldCell.getNumericCellValue());
break;
case STRING:
newCell.setCellValue(oldCell.getRichStringCellValue());
break;
}
}
//Check for merged regions and copy said regions to new row.
for(int i = 0; i <worksheet.getNumMergedRegions(); i++){
CellRangeAddress cellRangeAddress = worksheet.getMergedRegion(i);
if(cellRangeAddress.getFirstRow() == sourceRow.getRowNum()){
CellRangeAddress newCellRangeAddress = new CellRangeAddress(newRow.getRowNum(),
(newRow.getRowNum()+(cellRangeAddress.getLastRow() - cellRangeAddress.getFirstRow()
)),cellRangeAddress.getFirstColumn(),cellRangeAddress.getLastColumn());
worksheet.addMergedRegion(newCellRangeAddress);
}
}
}
当我运行代码时,它运行正常并表示已成功完成,但是,当我尝试打开修改后的文件时,它会提示数据损坏并从文件中删除除两行之外的所有内容(如果我允许 MS Excel 尝试来修复它)。我还尝试将输出重定向到不同的文件,但结果是相同的 - 它损坏了数据并且只显示两行,它们之间有一个空白行。
所以我的问题是:1)有没有更好的方法来做我想做的事?2)如果没有[更好的方法],我做错了什么导致它破坏了我试图写入的所有数据。
最佳答案
所以我设法解决了我的问题。我没有尝试附加到源行下方,而是决定将该行附加到文件末尾,这使得逻辑更加容易。这是我为解决该问题而创建的代码:
public void addAddtlRows(Sheet sheet,Workbook workbook,DataFormatter formatter, ImportDataFormatter fmt, File file){
//Loads and parses the regular expression into memory and creates a new StringBuilder() instance.
final Pattern p = Pattern.compile(regex);
StringBuilder sb = new StringBuilder();
//Create the array which holds all the entries from a cell that contains multiple entries
String[] sysNumber;
//The number of the last row in the sheet.
int lastRow = sheet.getLastRowNum();
//Instantiates an integer that will be assigned the length of the array later
int arrayLength;
//Loops through the each row in the sheet
for(int r = 1; r < lastRow; r++){
Row row = sheet.getRow(r);
String cellData = formatter.formatCellValue(row.getCell(2));
String active = formatter.formatCellValue(row.getCell(4));
if((cellData.length() > 4) && (active.equals("Yes"))){
/** Checks whether or not we are on the cell containing the
* numbers and whether or not they are currently active.
* If we are, get values for all cells in the row
*/
String an = formatter.formatCellValue(row.getCell(0));
String cn = formatter.formatCellValue(row.getCell(1));
String ca = formatter.formatCellValue(row.getCell(3));
String es = formatter.formatCellValue(row.getCell(4));
String i10 = formatter.formatCellValue(row.getCell(5));
String i9 = formatter.formatCellValue(row.getCell(6));
String ia = formatter.formatCellValue(row.getCell(7));
String rp = formatter.formatCellValue(row.getCell(8));
/**
* Checks the contents of the cell for more than one entry
* If the cell contains more than one number, process
* the data accordingly
*/
fmt.setSysNum(cellData);
String[] sys = String.valueOf(fmt.getSysNum()).split(",");
/**
* Assign the length value of the 'sysNumber' array to
* the integer 'arrayLength'
*/
arrayLength = sys.length;
/**
* Loop through each entry in the string array, creating
* a new row on each iteration and pasting the data from
* the old cells to the new ones
*/
for(int n = 0; n < arrayLength; n++){
Row nRow = sheet.createRow(sheet.getPhysicalNumberOfRows());
nRow.createCell(0).setCellValue(an);
nRow.createCell(1).setCellValue(cn);
nRow.createCell(2).setCellValue(sys[n]);
nRow.createCell(3).setCellValue(ca);
nRow.createCell(4).setCellValue(es);
nRow.createCell(5).setCellValue(i10);
nRow.createCell(6).setCellValue(i9);
nRow.createCell(7).setCellValue(ia);
nRow.createCell(8).setCellValue(rp);
}
}
}
//Writes the newly added contents of the worksheet to the workbook.
try {
workbook.write(new FileOutputStream(file));
} catch (FileNotFoundException ex) {
Logger.getLogger(MapMultipleSNToDBFields.class.getName()).log(Level.SEVERE, null, ex);
} catch (IOException ex) {
Logger.getLogger(MapMultipleSNToDBFields.class.getName()).log(Level.SEVERE, null, ex);
}
}
关于java - 根据单元格内容将新行插入 Apache POI 电子表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58172896/
如何将扩展名为 ttf 和 otf 的新字体导入 POI API,而不将这些字体安装到环境中? Is there a jar that i should update it with the path
在这个问题的所有引用资料中,它没有解决并且不给maven因为没有在maven中做。错误是 包 org.apache.poi.ss.usermodel 可以从多个模块访问:poi、poi.ooxm在
上下文: 尝试使用 Apache POI 的 poi 和 poi-ooxml 4.0.0 版本 jar 打开 XLSX 文件 问题: 程序抛出错误,如下所示。当我使用 4.0.0 版本时,我发现此错误
刚开始使用 POI 3.10 创建 Word 文档(XWPF)。 大多数事情都是直截了当的,但我不明白如何添加页码。 我添加了页脚,但页脚中的文字在每一页上都相同 最佳答案 我在 LibreOffic
我正在使用 Apache POI 评估工作簿的每个公式单元格。当一个单元格包含对标准 excel 函数 NOW() 的调用时,Poi 会正确评估它并将调用替换为当前时间 - 格式为 VM 的默认时区。
我已经阅读了许多与我的要求相关的博客和论坛,但到目前为止,我能够在我得到的所有帮助下为第一级生成项目符号或编号。谁能指导我如何使用 apache poi 创建多级编号。 想知道 Apache POI
我正在使用 apache poi 创建 Excel 工作表。我有像 - 337499.939437217 这样的数字,我想在 Excel 中显示它,而不进行四舍五入。此外,单元格格式应为数字(对于某些
情况是,我合并了第一行的所有五个单元格,并在第一行的第一个单元格中插入了一个图像。我的要求是使图像在第一行水平居中。 我试过 cellStyle.setAlignment(CellStyle.ALIG
我正在尝试替换模板 DOCX使用 Apache 的文档 POI通过使用 XWPFDocument类(class)。我在文档中有标签和 JSON文件以读取替换数据。我的问题是 DOCX 中的文本行似乎以
好吧,老实说:标题并没有说出全部真相。我正在使用带有多个按钮(保存、关闭、编辑等)和一个执行 POI 操作的按钮的自定义控件 - 它生成一个 Word 文件。 我在这里遇到一个问题:点击 POI 按钮
有什么方法可以让我获得 excel 连续显示的格式化值,而不是我从流中返回的原始值? 或者这是否属于“公式评估”类别,这不支持? 最佳答案 如果您有 Cell您正在尝试从中获取数据,请尝试以下操作 D
在 xlsx 工作簿中,有一些单元格带有一些无界 SUMIF 公式,如下所示:SUMIF(MySheetname!$B:$B,$E4,MySheetname!$I:$I) . 使用 Apache PO
我正在创建一个 Java 程序来读取 Excel 工作表并创建一个逗号分隔的文件。当我运行带有空白列的示例 excel 文件时,第一行工作正常,但其余行跳过空白单元格。 我已经阅读了将空白单元格插入行
我目前正在使用 POI 使用 XSLF 编辑 PPTX 文件内嵌入图表中的数据。我找到了一个使用带有饼图的模板 ppt 的示例,效果非常好。我还尝试编辑折线图并且它有效。但是,当我尝试编辑嵌入式条形图
我正在学习使用 Selenium 和 Excel 进行数据驱动测试。我正在参加一门在线类(class),要求在 Maven 中添加 Apache poi 和 poi-ooxml 依赖项。 我正在努力理
我们有一个具有画廊功能的应用程序,我们想将图像导出到 powerpoint 演示文稿中。我能够做到这一点,但由于图像的大小和方向不同,图像边界几乎总是超出 ppt 幻灯片。我如何调整图像的大小(我不想
我有一个带有以下幻灯片布局的 pptx: System.out.println("Available slide layouts:"); for(XSLFSlideMaster master
我正在尝试使用 Java 中的 POI api 创建 Excel 工作表。在那个 Excel 工作表中,我想要一个只有 TIME 的单元格。通过设置它,我们可以像在数字列中那样将单元格包含在该特定列的
Apache Poi 可以计算和返回公式中函数的结果。但是对于特殊函数 HYPERLINK(),它只返回“显示值”,而不是实际计算的超链接值。 我有一个 Excel 文件,其中包含复杂的计算超链接,这
我正在使用 Apache POI。 我可以使用“org.apache.poi.hwpf.extractor.WordExtractor”从文档文件中读取文本 甚至使用“org.apache.poi.h
我是一名优秀的程序员,十分优秀!