I have two arrays
double[] pole=new double[100];
XSSFRichTextString[] pole1=new XSSFRichTextString[100];
array “pole” I filled like this
XSSFCell.CELL_TYPE_NUMERIC: {
pole[i] = cell.getNumericCellValue();
Is there a simple way how to write values from “pole” to “pole1”?
thanks
1 Answer