Я сделал чтение определенного столбца из файла Excel, но я не знаю, как записать эти данные в новый лист в файле Excel. Вот мой код
Workbook wb = WorkbookFactory.create(new FileInputStream("E:\\Dharshan/test.xlsx"));
Sheet sheet = wb.getSheetAt(0);
int column_index_1 = 0;
int column_index_2 = 0;
Row row = sheet.getRow(0);
for (Cell cell : row) {
// Column header names.
switch (cell.getStringCellValue()) {
case "Issue Type":
column_index_1 = cell.getColumnIndex();
break;
case "Issue key":
column_index_2 = cell.getColumnIndex();
break;
}
}
XSSFSheet sheet1 = (XSSFSheet) wb.createSheet("student Details1");
for (Row r : sheet) {
if (r.getRowNum()==0) continue;//hearders
Cell c_1 = r.getCell(column_index_1);
Cell c_2 = r.getCell(column_index_2);
System.out.print(" "+c_1 + " " + c_2+"\n");
Пока этот код не работает нормально, он читает данные из Excel и печатает данные в консоли
Map<String, Object[]> data = new TreeMap<String, Object[]>();
data.put("1", new Object[]{ "S.no", "Issue Type", "Issue key"});
data.put("2", new Object[]{ 1, c_1.getStringCellValue(), c_2.getStringCellValue()});
data.put("3", new Object[]{ 2, c_1.getStringCellValue(), c_2.getStringCellValue()});
// Iterate over data and write to sheet
Set<String> keyset = data.keySet();
int rownum = 0;
for (String key : keyset) {
// this creates a new row in the sheet
Row row1 = sheet1.createRow(rownum++);
Object[] objArr = data.get(key);
int cellnum = 0;
for (Object obj : objArr) {
// this line creates a cell in the next column of that row
Cell cell = row1.createCell(cellnum++);
if (obj instanceof String)
cell.setCellValue((String)obj);
else if (obj instanceof Integer)
cell.setCellValue((Integer)obj);
}
}
try {
// this Writes the workbook gfgcontribute
FileOutputStream out = new FileOutputStream(new File("E:\\Dharshan/test.xlsx"));
wb.write(out);
out.close();
System.out.println("test.xlsx written successfully on disk.");
}
catch (Exception e) {
e.printStackTrace();
}
}