根据定制的 XML 文件进行随机抽取节

此类库中的两个类可以达成这一的一些效果:每次打开网页展现不同的标语、问候语,根据语录内容随机出题,随机显示新闻等等。当然XML格式的定制或者根据不同的XML文件适当修改类字段还是必要的。

using System;
using System.Xml;
 
namespace Quotations
{
    public class QuotationManager
    {
        private XmlDocument quoteDoc;
        private int quoteCount;
 
        public QuotationManager(string fileName)
        {
            quoteDoc = new XmlDocument();
            quoteDoc.Load(fileName);
            quoteCount = quoteDoc.DocumentElement.ChildNodes.Count;
        }
 
        public Quotation GetRandomQuote()
        {
            int i;
            Random x = new Random();
            i = x.Next(quoteCount - 1);
            return new Quotation(quoteDoc.DocumentElement.ChildNodes[i]);
        }
    }
}
using System;
using System.Xml;
 
namespace Quotations
{
    public class Quotation
    {
        public string Source { get; set; }
        public string Date { get; set; }
        public string QuotationText { get; set; }
 
        public Quotation(XmlNode quoteNode)
        {
            if (quoteNode.SelectSingleNode("source") != null)
            {
                Source = quoteNode.SelectSingleNode("source").InnerText;
            }
 
            if (quoteNode.SelectSingleNode("date")!=null)
            {
                Date = quoteNode.SelectSingleNode("date").InnerText;
            }
 
            QuotationText = quoteNode.FirstChild.InnerText;
        }
    }
}

 

这样调用:

string filePath = Server.MapPath("./quotations.xml");
Quotations.QuotationManager manager = new Quotations.QuotationManager(filePath);
Quotations.Quotation quotation = manager.GetRandomQuote();
Response.Write("<b>" + quotation.Source + "</b>(<i>" + quotation.Date + "</i>)");
Response.Write("<blockquote>" + quotation.QuotationText + "</blockquote>");
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值