HSSFCell cellA1 = row1.createCell(0);
...
cellA1.setCellValue("this works hardcoded");
//but looking for such:
cellA1.setCellValue(cellValue1);
//
cellA1.setCellValue(i); //for loop, or for each
Any "catch" or something special you have to do to get a value from say a parsing method?
I get a "The method setCellValue(double) in the type HSSFCell is not applicable for the arguments (void)" Red Line Error (Eclipse) when I try this.
I am guessing you have to return a value, but return a "single" value, if that indeed is what could be done, is where I am a litte lost.
Ideas? (not asking for code necessarily, just an approach to go about this.
Thanks to all!

New Topic/Question
Reply




MultiQuote




|