79694231

Date: 2025-07-08 12:31:33
Score: 1
Natty:
Report link

cell.setCellValue("'" + value);

This is just putting a literal apostrophe in the cell - it's a workaround when typing manually but in this case, it writes it as actual data

Try changing it to:

cell.setCellValue(String.valueOf(value));

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: OUTATIME121GW