官方指导:主页->how to compile -> windows 指导文档写得很详细,但有不少细节点没提到,这里把过程简化总结,说明重点,及易坑点 1,安装需求 编译工具:cmake,安装最新版 a. vs2017,安装时注意勾选 Platform Toolset (x86 and x64) 若在cmake时发生错误:unknown c compiler 或 unknown cxx compiler,说明你选的vs编译器没有安装或没有正确安装. 这种情况下,重新安装VS就可以了. b. b
豆知识扩展: <meta> https://www.cnblogs.com/chentianwei/p/9183799.html css selector div > p 选择所有父母是<div>的<p>元素. div p 选择所有在<div>内的<p>元素. 个人理解 div.dialog特指类名是dialog的<div>元素 public 文件夹下的html文件是静态网页,通过http://localhost:3000/h
HSSFSheet sheet = hssfworkbook.CreateSheet("new sheet"); // Create a row and put some cells in it. Rows are 0 based. HSSFRow row = sheet.CreateRow(); // Create a cell and put a value in it. HSSFCell cell = row.CreateCell(); // Style the cell wit
根据项目需要,需要对excel进行导入导出,所以选择NPOI,优点在这里就不详细介绍了,下面进入正题. public int Import(string path) { IList<Student> list = new List<Student>(); try { string strFileName = path; using (FileStream file = new FileStream(strFileName, FileMode.Open, FileAccess.Rea