当前位置: 首页>>代码示例>>C#>>正文


C# XDocument.WriteXml方法代码示例

本文整理汇总了C#中System.Xml.Linq.XDocument.WriteXml方法的典型用法代码示例。如果您正苦于以下问题:C# XDocument.WriteXml方法的具体用法?C# XDocument.WriteXml怎么用?C# XDocument.WriteXml使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Xml.Linq.XDocument的用法示例。


在下文中一共展示了XDocument.WriteXml方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: GetContentFromPage

        public static PageModel GetContentFromPage(string url)
        {
            var pageType = url.Split('/').LastOrDefault().Split('.').FirstOrDefault();
            var path = "Resources/xml/" + pageType + ".xml";
            //If the requested file doesn't exist, or if the file is more than 12 hours old, try getting new file

            if (!File.Exists(path)
                || File.GetLastWriteTimeUtc(path) < DateTime.UtcNow.Subtract(new TimeSpan(1, 0, 0)))
            {
                try
                {
                    //keep a list of all running threads
                    var threadList = new List<Thread>();
                    var html = new HtmlWeb();
                    var page = html.Load(url);
                    var itemList =
                        page.GetElementbyId("contentPrimary").Elements("div").Where(
                            node => node.Attributes["class"].Value == "item").ToList();
                    //Create file structure
                    var xml = new XDocument(
                        new XElement("PageModel", new XAttribute("id", pageType),
                            new XElement("TextList"),
                            new XElement("ImageList"),
                            new XElement("LinksList")
                            )
                        );
                    var nNode = 1;
                    foreach (var htmlNode in itemList)
                    {
                        //Add element to text list for each htmlNode, with title, info, date and place
                        var element = xml.Descendants("TextList").FirstOrDefault();
                        element.Add(
                            new XElement("Text", new XAttribute("node", nNode), new XAttribute("type", "title"),
                                htmlNode.Descendants("a").FirstOrDefault().InnerText.Replace("&", "and")));
                        element.Add(
                            new XElement("Text", new XAttribute("node", nNode), new XAttribute("type", "info"),
                                htmlNode.Descendants("p").FirstOrDefault().InnerText.Replace("&", "and")));
                        var content = htmlNode.Descendants("small").FirstOrDefault().InnerText.Replace("&", "and");
                        element.Add(
                            new XElement("Text", new XAttribute("node", nNode), new XAttribute("type", "date"),
                                (pageType == "Events" ? content.Substring(0, content.IndexOf("\r\nWhere: ")) : content)));
                        element.Add(
                            new XElement("Text", new XAttribute("node", nNode), new XAttribute("type", "place"),
                                (pageType == "Events" ? content.Substring(content.IndexOf("Where: ")) : "")));
                        //build path for image
                        var imagePath = "images/" + pageType + "/" +
                                        htmlNode.Descendants("a")
                                            .FirstOrDefault()
                                            .InnerText.Replace("/", "-")
                                            .Replace("\\", "-")
                                            .Replace(" ", "") + ".jpg";
                        imagePath = imagePath.Replace(":", " -");
                        //if the image is not already in cache, create a new thread and download
                        if (!File.Exists("Resources/" + imagePath))
                        {
                            //Check if folder structure is there, if not create folder
                            if (!Directory.Exists("Resources/images/" + pageType))
                                Directory.CreateDirectory("Resources/images/" + pageType);
                            //create a new ThreadedDataFetcherObject
                            var isImage = htmlNode.Descendants("img").FirstOrDefault();
                            if (isImage != null)
                            {
                                ThreadedDataFetcher fetcher =
                                    new ThreadedDataFetcher(
                                        new Uri("http://www.childcancer.org.nz" +
                                                htmlNode.Descendants("img").FirstOrDefault().Attributes["src"].Value),
                                        "Resources/" + imagePath);
                                //add the downloadFile method to a thread
                                var th = new Thread(fetcher.downloadFile);
                                //add the thread to the threadList
                                threadList.Add(th);
                                th.Start();
                            }
                            else
                            {
                                imagePath = "images/logoCCF.png";
                            }
                        }
                        xml.Descendants("ImageList").FirstOrDefault().Add(
                            new XElement("Image", new XAttribute("node", nNode), imagePath));
                        nNode++;
                    }
                    //write all text to filesure
                    xml.WriteXml("Resources/xml/" + pageType + ".xml");

                    //join all the threads to make  they have all finished
                    foreach (var t in threadList)
                    {
                        t.Join();
                    }
                }
                catch (Exception)
                {
                    //If an Exception happens while getting data, return existing data, or Error data (create if it does not exist)
                    if (File.Exists(path))
                        return GetContentFromFile(path);
                    if (!File.Exists("Resources/xml/Error.xml"))
                    {
                        var xml = new XDocument(
                            new XElement("PageModel", new XAttribute("id", "Error"),
//.........这里部分代码省略.........
开发者ID:raouldc,项目名称:OptiDev,代码行数:101,代码来源:XMLUtilities.cs

示例2: ResolveWithStandardMergetool

        public static void ResolveWithStandardMergetool(
     Repository repository,
     string fullConflictPath,
     XDocument baseContent,
     XDocument localContent,
     XDocument incomingContent,
     Logger logger,
     string conflict )
        {
            // Run the standard mergetool to deal with any remaining issues.
              var basePath = fullConflictPath + "_base";
              var localPath = fullConflictPath + "_local";
              var incomingPath = fullConflictPath + "_incoming";

              baseContent.WriteXml( basePath );
              localContent.WriteXml( localPath );
              incomingContent.WriteXml( incomingPath );

              if ( RunStandardMergetool( repository, basePath, localPath, incomingPath, fullConflictPath ) == 0 ) {
            // The merge tool reports that the conflict was resolved
            logger.Info( "Resolved " + fullConflictPath + " using standard merge tool" );
            File.Delete( fullConflictPath );
            File.Move( localPath, fullConflictPath );

            repository.Stage( conflict );
              } else {
            logger.Info( "Did not resolve " + fullConflictPath );
            throw new OperationCanceledException();
              }

              File.Delete( basePath );
              File.Delete( incomingPath );
        }
开发者ID:configit-open-source,项目名称:csmerge,代码行数:33,代码来源:GitHelper.cs


注:本文中的System.Xml.Linq.XDocument.WriteXml方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。