Exemplo n.º 1
0
        private void buttonExtract_Click(object sender, EventArgs e)
        {
            Encoding GB18030      = Encoding.GetEncoding("GB18030"); // GB18030兼容GBK和GB2312
            Encoding UTF8         = Encoding.UTF8;
            Encoding en           = UTF8;
            bool     bJoinMethond = true;

            string url = Regex.Replace(textBoxURL.Text, @"(?is)\s*", "");

            if (radioButtonGB18030.Checked)
            {
                en = GB18030;
            }
            if (radioButtonOnce.Checked)
            {
                bJoinMethond = false;
            }

            if (0 == url.Length)
            {
                MessageBox.Show("请输入网址", "提示");
            }
            else
            {
                string html = SourceHTML.GetUrlHTML(url, en);
                if (html.Length != 0)
                {
                    TextExtract te = new TextExtract(html, bJoinMethond);

                    textBoxTitle.Text              = te.title;
                    richTextBoxText.Text           = te.content;
                    webBrowserPreview.DocumentText = te.webPreview;
                }
            }
        }
Exemplo n.º 2
0
        private void buttonExtract_Click(object sender, EventArgs e)
        {
            Encoding GB18030  = Encoding.GetEncoding("GB18030");   // GB18030兼容GBK和GB2312
            Encoding UTF8     = Encoding.UTF8;
            Encoding en       = UTF8;
            bool bJoinMethond = true;

            string url = Regex.Replace(textBoxURL.Text, @"(?is)\s*", "");
            if (radioButtonGB18030.Checked)
                en = GB18030;
            if (radioButtonOnce.Checked)
                bJoinMethond = false;

            if (0 == url.Length)
                MessageBox.Show("请输入网址", "提示");
            else
            {
                string html = SourceHTML.GetUrlHTML(url, en);

                //测试
                //StreamReader sr = new StreamReader(@"E:\temp\html.txt",GB18030);
                //html = sr.ReadToEnd();
                //sr.Close();

                if (html.Length != 0)
                {
                    TextExtract te = new TextExtract(html, bJoinMethond);

                    textBoxTitle.Text              = te.title;
                    richTextBoxText.Text           = te.content;
                    webBrowserPreview.DocumentText = te.webPreview;
                }
            }
        }