摘要:
C#.NET ASP.NET IIS 加载.pfx私钥证书时报错“出现了内部错误。” 原始代码报错: X509Certificate2 x509cer = new X509Certificate2(rawData, m.cert_pwd); 解决方法,加上enum: X509Certificate2 阅读全文
摘要:
C# .NET 操作Windows hosts 工具类HostsUtil: using System; using System.IO; using System.Text; namespace CommonUtils { public static class HostsUtil { public 阅读全文
摘要:
腾讯视频遇到“前设备播放4K可能引发卡顿等异常,建议降低清晰度”。 解决方法: 在菜单-设置-播放设置-勾选“开启硬件加速”-应用,然后退出腾讯视频,重新打开腾讯视频。 阅读全文
摘要:
书接上回,VM 安装ubuntu server:https://www.cnblogs.com/runliuv/p/16880599.html 1.从 https://www.hostbuf.com/ 下载FinalShell SSH工具,并安装。2.点击左上角文件夹图标,再点击白色文件夹图标,点击 阅读全文
摘要:
在:https://ubuntu.com/download/server 中下拉找到“Ubuntu Server 20.04 LTS”,下载ISO. 在VM WARE 中,如果鼠标和键盘被虚拟机占用,想切回主机,记得按 CTRL+ ALT 。 1.在VM 中点击菜单,文件-新建虚拟机。 2.选择“典 阅读全文
摘要:
报错内容:ex:An exception has been raised that is likely due to a transient failure. Consider enabling transient error resiliency by adding 'EnableRetryOnF 阅读全文
摘要:
(编程语言界的丐帮 C#).NET Framework 读取Excel到DataTable 生成DataTable到Excel,支持 2007 .xlsx,2003 .xls。 nuget 引用 NPOI 。 ExcelHelper: using NPOI.HPSF; using NPOI.HSSF 阅读全文
摘要:
实例化时异常: EOF in header 错误代码: try { workBook = new HSSFWorkbook(file); } catch { try { workBook = new XSSFWorkbook(file); } catch { throw new Exception( 阅读全文
摘要:
System.Runtime.InteropServices.ExternalException:“GDI+ 中发生一般性错误。” 原因:文件夹不存在。 解决方法: if (!Directory.Exists(imageDir)) { Directory.CreateDirectory(imageD 阅读全文
摘要:
java: Compilation failed: internal java compiler error 解决方法: 1.打开菜单 ,File - Project Structure - Project- Language level ,改成你想要的版本,如:8. 下方的 Modules - L 阅读全文