Heim > Fragen und Antworten > Hauptteil
直接赋值不行呀
伊谢尔伦2017-04-18 09:44:09
cell = row.createCell(index);cell.set...
PHP中文网2017-04-18 09:44:09
cell 为 null 的时候,这个对象不存在,当然无法赋值,你得先创建出 cell,再调用 cell 的 set 方法
ringa_lee2017-04-18 09:44:09
直接给赋值 string s='';cell.setcellvalue(s);这样可以吗?