国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

java - How to use POI to prohibit users from adding sheets in EXCEL
給我你的懷抱
給我你的懷抱 2017-05-17 10:01:18
0
1
904

Excel generated by POI can add sheets. How to disable this function
In addition, how to use POI to only allow users to modify the style of the table but not the content of the table

給我你的懷抱
給我你的懷抱

reply all(1)
為情所困

Do you want to prevent the cell value from being modified? You can set itCellStyle

CellStyle unlockedCellStyle = wb.createCellStyle();
unlockedCellStyle.setLocked(true); 
cell.setCellStyle(unlockedCellStyle);
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template