zoukankan      html  css  js  c++  java
  • C#:读取html模板文件,并替换修改文件中指定值,保存为修改后的文件

    1.准备html模板文件:Pages/Device/DeviceModel8.html

    2 using System.IO:读取文件内容,并替换指定内容

                            Div1.InnerHtml = "";
                            Stream myStream = new FileStream(HttpContext.Current.Server.MapPath(@"~/Pages/Device/DeviceModel8.html"), FileMode.Open);
                            Encoding encode = System.Text.Encoding.GetEncoding("GB2312");
                            StreamReader myStreamReader = new StreamReader(myStream, encode);
                            string strhtml = myStreamReader.ReadToEnd();
                            string stroutput = strhtml.Replace("$[Formitem0]$", "要替换的内容");
                            myStream.Seek(0, SeekOrigin.Begin);
                            myStream.SetLength(0);
                            StreamWriter sw = new StreamWriter(myStream, encode);
                            sw.Write(stroutput);
                            sw.Flush();
                            sw.Close();
                            myStream.Close();
                            Div1.InnerHtml = stroutput;

    https://www.cnblogs.com/wangyt223/archive/2012/08/17/2643851.html

  • 相关阅读:
    spring相关资源
    spring mvc获取request HttpServletRequest
    spring中文乱码问题
    haskell读写文件相关(含二进制)
    grade web的构建约定 convention
    李洪强iOS开发之-实现点击单行View显示和隐藏Cell
    Animated progress view with CAGradientLayer(带翻译)
    关于CAShapeLayer
    CAShapeLayer的使用
    用缓动函数模拟物理动画
  • 原文地址:https://www.cnblogs.com/July-/p/9627394.html
Copyright © 2011-2022 走看看