作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
我第一次将粗体应用于列,但我只希望一行加粗而不是整列。所以我决定做同样的事情,但使用 row.RowStyle
。编译没有错误,但我得到的是运行时错误,其中显示 r.RowStyle.SetFont(font);
。我制作了一个与 excel 相关的所有内容的类,在此类中我得到了这个错误(r.RowStyle.SetFont(font);
):
已处理 NullReferenceException
对象引用未设置为对象的实例。
调试了整个过程,没有任何null。我不明白为什么在使用 RowStyle
时会出现此错误,而在使用 CellStyle
时却不会出现该错误。
这是我的课:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using NPOI.HSSF.UserModel;
using NPOI.HPSF;
using NPOI.POIFS.FileSystem;
using NPOI.SS.UserModel;
using System.IO;
//works with everything related to excel
namespace takeMyTime_text
{
class exelSheet
{
string exelPath; // where it's being saved
HSSFWorkbook wb2 = new HSSFWorkbook();
ISheet sheet;
IRow r;
IFont font;
String[] headerTitles = { "Date", "In", "Out", "In", "Out", "Description" };
// assing values to class variables
public void getValues(string path, string worksheetName)
{
exelPath = path;
}
//excel header
public void header()
{
#region set bold properties
font = wb2.CreateFont();
font.FontHeightInPoints = 11;
font.FontName = "Arial";
font.Boldweight = (short)FontBoldWeight.Bold;
#endregion
sheet = wb2.CreateSheet("test sheet");
//se tiene que usar esto cada vez que vallas a escribir en el mismo row
r = sheet.CreateRow(0);
r.RowStyle.SetFont(font);
for (int i = 0; i < headerTitles.Length; i++)
{
r.CreateCell(i).SetCellValue(headerTitles[i]);
}
}
//excel footer
public void footer(int row, int col, string totalHours, int row2, int col2)
{
//ws.Cells[row, col] = new Cell("Worked hours:");
//ws.Cells[row2, col2] = new Cell(totalHours);
//wb.Worksheets.Add(ws);
//wb.Save(exelPath);
}
// write the date on the excel file
public void writeDate(DateTime dt, int col, int row)
{
r = sheet.CreateRow(row);
r.CreateCell(col).SetCellValue(dt.Month + "/" + dt.Day + "/" + dt.Year);
}
//write and value on a cel
public void writeValues(string text, int col, int row)
{
//r = sheet.CreateRow(row);
r.CreateCell(col).SetCellValue(text);
}
//guarda la info en un excel
public void writeToFile()
{
FileStream file = new FileStream(exelPath, FileMode.Create);
wb2.Write(file);
file.Close();
}
}
}
安装并修复我的 VS2015 实例后,我仍然无法让智能感知(服务器端)在我的 MVC View 中工作。当我在 session 中第一次打开 .cshtml 文件并找到 Activitylog 文件时
我是一名优秀的程序员,十分优秀!