金牌会员
 
- 积分
- 2097
- 金钱
- 2097
- 注册时间
- 2014-3-7
- 在线时间
- 491 小时
|
1金钱
本帖最后由 ssssssssssss 于 2021-12-14 10:44 编辑
- var wk = new XSSFWorkbook();
- var st = wk.CreateSheet();
- var r = st.CreateRow(0);
- var c = r.CreateCell(0);
- c.SetCellValue("我是中国人");
- var HB = new NPOI.SS.Util.CellRangeAddress(0, 4, 0, 3);
- st.AddMergedRegion(HB);
- var MyFont = wk.CreateFont();
- var MyCellStyle = wk.CreateCellStyle();
- MyFont.FontHeightInPoints = 15;
- MyFont.FontName = "微软雅黑";
- MyFont.Color = NPOI.HSSF.Util.HSSFColor.DarkBlue.Index;
- MyCellStyle.FillPattern = NPOI.SS.UserModel.FillPattern.SolidForeground;
- MyCellStyle.FillForegroundColor = NPOI.HSSF.Util.HSSFColor.LightGreen.Index;
- MyCellStyle.SetFont(MyFont);
- c.CellStyle = MyCellStyle;
- var fs = new FileStream(@"C;\ABCDEFG.xlsx", FileMode.Create, FileAccess.Write);
- wk.Write(fs);
- fs.Close();
- MessageBox.Show("操作完成了数据写入了");
复制代码
|
最佳答案
查看完整内容[请看2#楼]
var fs = new FileStream(@"C;\ABCDEFG.xlsx", FileMode.Create, FileAccess.Write);
找到问题了,路径的标点符号写错了
|