| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

「C Sharp LINQ使用例」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
(ページの作成:「==C# LINQ使用例== [C#][C# サンプルコード] *[http://iss.ndl.go.jp/information/api/ 国立国会図書館API] using System; using System.Collections.Generic…」)
 
 
(同じ利用者による、間の4版が非表示)
1行目: 1行目:
==C# LINQ使用例==
+
==[[C# LINQ使用例]]==
[C#][C# サンプルコード]
+
[[C Sharp]] | [[C Sharp サンプルコード]] |
 
*[http://iss.ndl.go.jp/information/api/ 国立国会図書館API]
 
*[http://iss.ndl.go.jp/information/api/ 国立国会図書館API]
 
  using System;
 
  using System;
7行目: 7行目:
 
  using System.Linq;
 
  using System.Linq;
 
  using System.Net;
 
  using System.Net;
  using System.Reflection;
+
  using System.[[R]]eflection;
 
  using System.Text;
 
  using System.Text;
 
  using System.Threading.Tasks;
 
  using System.Threading.Tasks;
20行目: 20行目:
 
         {
 
         {
 
             var p = new Program();
 
             var p = new Program();
             if (args.Length < 2)
+
             if (args.Length &lt; 2)
 
             {
 
             {
 
                 Console.WriteLine("must 2 arguments.");
 
                 Console.WriteLine("must 2 arguments.");
34行目: 34行目:
 
             else if (option == "-k")
 
             else if (option == "-k")
 
             {
 
             {
                 var param = new List<KeyValuePair<string, string>>();
+
                 var param = new List&lt;KeyValuePair&lt;string, string&gt;&gt;();
                 for (int i=1; i<args.Length; i++)
+
                 for (int i=1; i&lt;args.Length; i++)
 
                 {
 
                 {
 
                     string[] kv = args[i].Split('=');
 
                     string[] kv = args[i].Split('=');
                     param.Add(new KeyValuePair<string, string>(kv[0], kv?[1]));
+
                     param.Add(new KeyValuePair&lt;string, string&gt;(kv[0], kv?[1]));
 
                 }
 
                 }
 
                 xml = p.GetXml(param);
 
                 xml = p.GetXml(param);
44行目: 44行目:
 
             else if (option == "-t")
 
             else if (option == "-t")
 
             {
 
             {
                 var param = new List<KeyValuePair<string, string>>();
+
                 var param = new List&lt;KeyValuePair&lt;string, string&gt;&gt;();
                 param.Add(new KeyValuePair<string, string>("title", "Python"));
+
                 param.Add(new KeyValuePair&lt;string, string&gt;("title", "[[Python]]"));
 
                 xml = p.GetXml(param);
 
                 xml = p.GetXml(param);
 
             }
 
             }
53行目: 53行目:
 
         }
 
         }
 
   
 
   
         private static void LinqTest(List<Book> books)
+
         private static void LinqTest(List&lt;Book&gt; books)
 
         {
 
         {
 
   
 
   
61行目: 61行目:
 
         }
 
         }
 
   
 
   
         /// <summary>
+
         /// &lt;summary&gt;
 
         /// メソッド構文
 
         /// メソッド構文
         /// </summary>
+
         /// &lt;/summary&gt;
         /// <param name="books"></param>
+
         /// &lt;param name="books"&gt;&lt;/param&gt;
         private static void MethodExp(List<Book> books)
+
         private static void MethodExp(List&lt;Book&gt; books)
 
         {
 
         {
 
             var result = books
 
             var result = books
                         .Where( book => book.Title.IndexOf("計算") > 0 )
+
                         .Where( book =&gt; book.Title.IndexOf("計算") &gt; 0 )
                         .OrderByDescending( book=> book.Title)
+
                         .OrderByDescending( book=&gt; book.Title)
                         .Select( book => book.Title)
+
                         .Select( book =&gt; book.Title)
 
   
 
   
 
               ;
 
               ;
80行目: 80行目:
 
         }
 
         }
 
   
 
   
         /// <summary>
+
         /// &lt;summary&gt;
 
         /// クエリ構文
 
         /// クエリ構文
         /// </summary>
+
         /// &lt;/summary&gt;
         /// <param name="books"></param>
+
         /// &lt;param name="books"&gt;&lt;/param&gt;
         private static void QueryExp(List<Book> books)
+
         private static void QueryExp(List&lt;Book&gt; books)
 
         {
 
         {
 
             var result = from book in books
 
             var result = from book in books
                           where book.Title.IndexOf("計算") > 0
+
                           where book.Title.IndexOf("計算") &gt; 0
 
                           orderby book.Title descending
 
                           orderby book.Title descending
 
                           select book.Title
 
                           select book.Title
93行目: 93行目:
 
   
 
   
 
             // 遅延評価
 
             // 遅延評価
             // books.ForEach(book => book.Title = book.Title.Replace("Python", "HOGE"));
+
             // books.ForEach(book =&gt; book.Title = book.Title.Replace("[[Python]]", "HOGE"));
 
   
 
   
 
             foreach (string title in result)
 
             foreach (string title in result)
101行目: 101行目:
 
         }
 
         }
 
   
 
   
         private static List<Book> ParseXml(string xml)
+
         private static List&lt;Book&gt; ParseXml(string xml)
 
         {
 
         {
 
             XNamespace xmlns = "http://www.loc.gov/zing/srw/";
 
             XNamespace xmlns = "http://www.loc.gov/zing/srw/";
107行目: 107行目:
 
             XNamespace xmlns3 = "http://purl.org/dc/elements/1.1/";
 
             XNamespace xmlns3 = "http://purl.org/dc/elements/1.1/";
 
              
 
              
             var root = XElement.Load(new XmlTextReader(new StringReader(xml)));
+
             var root = XElement.Load(new XmlText[[R]]eader(new String[[R]]eader(xml)));
 
   
 
   
 
             var records = from record in root.Elements(xmlns + "records")
 
             var records = from record in root.Elements(xmlns + "records")
116行目: 116行目:
 
                           ;
 
                           ;
 
   
 
   
             var books = new List<Book>();
+
             var books = new List&lt;Book&gt;();
 
             foreach (XElement record in records)
 
             foreach (XElement record in records)
 
             {
 
             {
158行目: 158行目:
 
         }
 
         }
 
   
 
   
         public string GetUrl(List<KeyValuePair<string, string>> param)
+
         public string GetUrl(List&lt;KeyValuePair&lt;string, string&gt;&gt; param)
 
         {
 
         {
             string url = "http://iss.ndl.go.jp/api/sru?operation=searchRetrieve&recordPacking=xml&query={0}";
+
             string url = "http://iss.ndl.go.jp/api/sru?operation=search[[R]]etrieve&recordPacking=xml&query={0}";
             string qp = string.Join(" OR ",
+
             string qp = string.Join(" O[[R]] ",
                 param.Select(kvp => WebUtility.UrlEncode(String.Format("{0}=\"{1}\"", kvp.Key, kvp.Value))));
+
                 param.Select(kvp =&gt; WebUtility.UrlEncode(String.Format("{0}=\"{1}\"", kvp.Key, kvp.Value))));
 
             return string.Format(url, qp);
 
             return string.Format(url, qp);
 
         }
 
         }
 
   
 
   
         public string GetXml(List<KeyValuePair<string, string>> param)
+
         public string GetXml(List&lt;KeyValuePair&lt;string, string&gt;&gt; param)
 
         {
 
         {
 
             string url = GetUrl(param);
 
             string url = GetUrl(param);
172行目: 172行目:
 
             using (var client = new WebClient())
 
             using (var client = new WebClient())
 
             {
 
             {
                 using (var reader = new StreamReader(client.OpenRead(url)))
+
                 using (var reader = new Stream[[R]]eader(client.Open[[R]]ead(url)))
 
                 {
 
                 {
                     string xml = reader.ReadToEnd();
+
                     string xml = reader.[[R]]eadToEnd();
 
                     Console.WriteLine(xml);
 
                     Console.WriteLine(xml);
 
                     return xml;
 
                     return xml;

2020年2月16日 (日) 04:22時点における最新版

C# LINQ使用例

C Sharp | C Sharp サンプルコード |

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using System.Xml;
using System.Xml.Linq;

namespace Book
{
    class Program
    {
        static void Main(string[] args)
        {
            var p = new Program();
            if (args.Length < 2)
            {
                Console.WriteLine("must 2 arguments.");
                return;
            }
            string option = args[0];

            string xml = null;
            if (option == "-f")
            {
                xml = File.ReadAllText(args[1],Encoding.UTF8);
            }
            else if (option == "-k")
            {
                var param = new List<KeyValuePair<string, string>>();
                for (int i=1; i<args.Length; i++)
                {
                    string[] kv = args[i].Split('=');
                    param.Add(new KeyValuePair<string, string>(kv[0], kv?[1]));
                }
                xml = p.GetXml(param);
            }
            else if (option == "-t")
            {
                var param = new List<KeyValuePair<string, string>>();
                param.Add(new KeyValuePair<string, string>("title", "Python"));
                xml = p.GetXml(param);
            }
            var books = ParseXml(xml);

            LinqTest(books);
        }

        private static void LinqTest(List<Book> books)
        {

            // QueryExp(books);
            MethodExp(books);

        }

        /// <summary>
        /// メソッド構文
        /// </summary>
        /// <param name="books"></param>
        private static void MethodExp(List<Book> books)
        {
            var result = books
                        .Where( book => book.Title.IndexOf("計算") > 0 )
                        .OrderByDescending( book=> book.Title)
                        .Select( book => book.Title)

             ;

            foreach (string title in result)
            {
                Console.WriteLine(title);
            }
        }

        /// <summary>
        /// クエリ構文
        /// </summary>
        /// <param name="books"></param>
        private static void QueryExp(List<Book> books)
        {
            var result = from book in books
                         where book.Title.IndexOf("計算") > 0
                         orderby book.Title descending
                         select book.Title
             ;

            // 遅延評価
            // books.ForEach(book => book.Title = book.Title.Replace("Python", "HOGE"));

            foreach (string title in result)
            {
                Console.WriteLine(title);
            }
        }

        private static List<Book> ParseXml(string xml)
        {
            XNamespace xmlns = "http://www.loc.gov/zing/srw/";
            XNamespace xmlns2 = "info:srw/schema/1/dc-v1.1";
            XNamespace xmlns3 = "http://purl.org/dc/elements/1.1/";
            
            var root = XElement.Load(new XmlTextReader(new StringReader(xml)));

            var records = from record in root.Elements(xmlns + "records")
                                            .Elements(xmlns + "record")
                                            .Elements(xmlns + "recordData")
                                            .Elements(xmlns2 + "dc")
                          select record
                          ;

            var books = new List<Book>();
            foreach (XElement record in records)
            {

                var book = new Book();
                books.Add(book);

                foreach(PropertyInfo field in book.GetType().GetProperties())
                {
                    foreach (var elms in record.Elements(xmlns3 + field.Name.ToLower()))
                    {
                        field.SetMethod?.Invoke(book, new object[] { elms.Value });
                        break;
                    }
                }

            }
            return books;
        }

        class Book
        {
            public string Title { get; set; } = "";
            public string Creator { get; set; } = "";
            public string Subject { get; set; } = "";
            public string Publisher { get; set; } = "";
            public string Language { get; set; } = "";

            public override string ToString()
            {
                var buf = new StringBuilder();
                buf.Append($"{this.GetType().Name}{{");
                foreach(PropertyInfo p in  this.GetType().GetProperties())
                {
                    buf.Append($"{p.Name}={p.GetValue(this)},");
                }

                buf.Append($"}}");
                return buf.ToString();
            }
        }

        public string GetUrl(List<KeyValuePair<string, string>> param)
        {
            string url = "http://iss.ndl.go.jp/api/sru?operation=searchRetrieve&recordPacking=xml&query={0}";
            string qp = string.Join(" OR ",
                param.Select(kvp => WebUtility.UrlEncode(String.Format("{0}=\"{1}\"", kvp.Key, kvp.Value))));
            return string.Format(url, qp);
        }

        public string GetXml(List<KeyValuePair<string, string>> param)
        {
            string url = GetUrl(param);
            
            using (var client = new WebClient())
            {
                using (var reader = new StreamReader(client.OpenRead(url)))
                {
                    string xml = reader.ReadToEnd();
                    Console.WriteLine(xml);
                    return xml;
                }
            }
        }
    }
}