row.createCell(j).setCellValue(value);
}
}
- final int firstRow = 1; // works with 0, but fails with 1!
+ final int firstRow = 1; // worked with 0, but failed with 1!
final int secondRow = firstRow + 1;
sheet.addMergedRegion(new CellRangeAddress(firstRow, secondRow, 0, 0));
sheet.addMergedRegion(new CellRangeAddress(firstRow, firstRow, 1, 2));
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.ss.util.CellAddress;
+import org.apache.poi.ss.util.CellRangeAddress;
import org.apache.poi.ss.util.CellUtil;
import org.apache.poi.xssf.XSSFITestDataProvider;
import org.apache.poi.xssf.XSSFTestDataSamples;
wb.close();
}
+
+ @Test
+ public void testBug69154() throws Exception {
+ // this does not appear to work for HSSF but let's get it working for XSSF anyway
+ try (Workbook wb = _testDataProvider.createWorkbook()) {
+ Sheet sheet = wb.createSheet();
+ for (int i = 0; i < 6; i++) {
+ Row row = sheet.createRow(i);
+ for (int j = 0; j < 6; j++) {
+ String value = new CellAddress(i, j).formatAsString();
+ row.createCell(j).setCellValue(value);
+ }
+ }
+ final int firstCol = 1;
+ final int secondCol = firstCol + 1;
+ sheet.addMergedRegion(new CellRangeAddress(0, 0, firstCol, secondCol));
+ sheet.addMergedRegion(new CellRangeAddress(1, 2, firstCol, firstCol));
+ sheet.addMergedRegion(new CellRangeAddress(3, 3, firstCol, secondCol));
+ assertEquals(3, sheet.getNumMergedRegions());
+ sheet.shiftColumns(2, 5, -1);
+ // assertEquals(2, sheet.getNumMergedRegions());
+ }
+ }
}
// build a range of the rows that are overwritten, i.e. the target-area, but without
// rows that are moved along
final CellRangeAddress overwrite;
- if(n > 0) {
+ if (n > 0) {
// area is moved down => overwritten area is [endRow + n - movedRows, endRow + n]
final int firstRow = Math.max(endRow + 1, endRow + n - movedRows);
final int lastRow = endRow + n;
- overwrite = new CellRangeAddress(firstRow, lastRow, 0, 0);
+ overwrite = new CellRangeAddress(firstRow, lastRow, merged.getFirstColumn(), merged.getLastColumn());
} else {
// area is moved up => overwritten area is [startRow + n, startRow + n + movedRows]
final int firstRow = startRow + n;
final int lastRow = Math.min(startRow - 1, startRow + n + movedRows);
- overwrite = new CellRangeAddress(firstRow, lastRow, 0, 0);
+ overwrite = new CellRangeAddress(firstRow, lastRow, merged.getFirstColumn(), merged.getLastColumn());
}
// if the merged-region and the overwritten area intersect, we need to remove it
* @param step length of the shifting step
*/
public static void validateShiftParameters(int firstShiftColumnIndex, int lastShiftColumnIndex, int step) {
- if(step < 0) {
+ if (step < 0) {
throw new IllegalArgumentException("Shifting step may not be negative, but had " + step);
}
- if(firstShiftColumnIndex > lastShiftColumnIndex) {
+ if (firstShiftColumnIndex > lastShiftColumnIndex) {
throw new IllegalArgumentException(String.format(LocaleUtil.getUserLocale(),
"Incorrect shifting range : %d-%d", firstShiftColumnIndex, lastShiftColumnIndex));
}
*/
public abstract class BaseTestSheetShiftRows {
- private final ITestDataProvider _testDataProvider;
+ protected final ITestDataProvider _testDataProvider;
protected BaseTestSheetShiftRows(ITestDataProvider testDataProvider) {
_testDataProvider = testDataProvider;