博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
.net 根据网址生成静态页
阅读量:6617 次
发布时间:2019-06-25

本文共 1863 字,大约阅读时间需要 6 分钟。

生成HTML页面代码

public int Htmls(int id)        {            int result = 0;            string strHtmlContent = "";            HttpWebRequest request;            Encoding encoding = Encoding.GetEncoding("utf-8");            StreamReader sr = null;            StreamWriter sw = null;            string urls = "http://www.baidu.com/";            try            { //声明一个HttpWebRequest请求                request = (HttpWebRequest)WebRequest.Create(urls);                //连接超时时间                request.Timeout = 20000;                request.Headers.Set("Pragma", "no-cache");                HttpWebResponse response = (HttpWebResponse)request.GetResponse();                Stream streamHtmlCode = response.GetResponseStream();                sr = new StreamReader(streamHtmlCode, encoding);                strHtmlContent = sr.ReadToEnd();            }            catch (Exception ex)            {                result = 2;                Log.Write(urls + "=Message=" + ex.Message + " StackTrace=" + ex.StackTrace);                // System.Threading.Thread.Sleep(20000);            }            finally            {
// // sr.Close(); request = null; } string fileName = id + ".html"; //写入 try { sw = new StreamWriter(HttpContext.Current.Server.MapPath("/shengxiao/jm/") + fileName, false, encoding); sw.Write(strHtmlContent); sw.Flush(); result = 1; } catch (Exception ex) { throw ex; } finally { if (sw != null) { sw.Close(); } // Response.Write(urls); } return result; }
View Code

 

转载于:https://www.cnblogs.com/yonsy/p/4253415.html

你可能感兴趣的文章
Hive 底层执行流程
查看>>
2012年7月敏捷个人俱乐部北京线下沙龙-我心中的敏捷个人活动报道
查看>>
【python3.2机器学习环境搭建与配置】
查看>>
[C++] 左值、右值、右值引用
查看>>
我的友情链接
查看>>
三、数据类型转换、运算符、流程控制、字符集
查看>>
管理软件需重管理和实用性
查看>>
C# 插入Excel页眉、页脚
查看>>
SQL查询多条不重复记录值简要解析【转载】
查看>>
hackermi PHP 404 一句话***
查看>>
我的友情链接
查看>>
我的数字化IT项目管理体系
查看>>
Java面试_冒泡排序
查看>>
【浙大网新图灵通讯】无废话简单高效C#编码规范20100621
查看>>
WCF客户端动态设置WCF服务器主机的地址的方法参考,可以连接多个相同WCF主机的方法...
查看>>
Linux系统进程CPU使用率限制脚本
查看>>
我的友情链接
查看>>
STP理论知识
查看>>
mysql 将时间戳直接转换成日期时间
查看>>
linux笔记--DNS服务配置
查看>>