public Dictionary<string,string> GetSourceDisksElements(String section) { section = "[" + section; Dictionary<string, string> keyToValue = new Dictionary<string, string>(); //打开文件流,开始读取文件 using (StreamReader sin = new StreamRea
最近再搞PDF得展示问题,因为aspose.pdf成本太高,只能使用pdf.js这个开源强大的前端东东了. 在百度了很久后 网上大都是node,java,php的事例,有位大哥的是C#的后台代码按他写的前端不生效,最终代码更改如下 public void GetDoc(string id) { try { var model = zSWD_DocService.GetModelById(id); var path = System.Web.HttpContext.Current.Server.M
用FileStream 读取文件流并显示给文件内容 string p = @"C:\Users\Administrator\Desktop\1.txt"; FileStream fsR = new FileStream(p, FileMode.Open, FileAccess.Read); byte[] buff = new byte[2];//设置内存缓存区大小 while (true) { int r= fsR.Read(buff, 0, buff.Length); if (r =