我不确定为什么,但是当我输出excel文件时,所有数据都是相同的。当我在输出文件之前在for循环中打印时,所有值都不相等。我已经看了1.5个小时了,我一生都无法解决。有任何想法吗 ?

public void excellGenerator(String toexcel,String oldData2){

            //System.out.println("THis is the excel file data:\n\n"+toexcel);

            String[] excel = toexcel.split("EOL\n");
            String[] dataToArray = oldData2.split("\\|");
            String[][] finalExcel =new String[excel.length][];
            int l=0;

            for (int i=0; i<excel.length; i++) {
                finalExcel[i]= excel[i].split("\\|");
            }




        try{
            //+System.out.println("im Lost O_O oh no");
            String filename="LOA_"+output+".xls" ;
            HSSFWorkbook workbook=new HSSFWorkbook();
            HSSFSheet sheet =  workbook.createSheet("LOA Results");
            HSSFRow rowhead=   sheet.createRow(0);

            for(int i=0; i < dataToArray.length ;i++){

                rowhead.createCell(i).setCellValue(dataToArray[i]);
            }

            for(int i=1; i < excel.length+1 ;i++){

                HSSFRow row =   sheet.createRow(i);

                for(int j=0; j < excel.length ;j++){

                    for(int k=0; k < finalExcel[j].length ;k++){

                        row.createCell(k).setCellValue(finalExcel[j][k]);
                        System.out.print(finalExcel[j][k]+" ");
                    }
                    System.out.println();
                }
            }

            FileOutputStream fileOut =  new FileOutputStream(filename);
            workbook.write(fileOut);
            fileOut.close();
            System.out.println("Your excel file has been generated!");

            } catch ( Exception ex ) {
                System.out.println(ex);

            }
        }

最佳答案

您的循环太多了,

for(int i=1; i <= excel.length; i++){
  HSSFRow row = sheet.createRow(i);
  final int j = i - 1; // <-- it's actually the row index into finalExcel (0 based).
  for(int k=0; k < finalExcel[j].length; k++){
    row.createCell(k).setCellValue(finalExcel[j][k]);
    System.out.print(finalExcel[j][k]+" ");
  }
  System.out.println();
}

10-06 05:11
查看更多