ニコ生APIの最新仕様
↑で書いているWindowsアプリケーションを作成しています。
HTML解析に「AngleSharp」ライブラリを使用しています。
フォームにリストボックスとボタンを配置して、ボタン押下時に
HTMLを取得、解析しています。(最終形では、HTML取得、解析処理は
タイマー処理とする予定)
UpdateList関数内の
var listItems = ul[0].QuerySelectorAll("li").Select(n => {
で一回目の制御は期待した通りにliタグを参照できますが、2回目から、
下層のa > ul > liタグを参照してしまい、titleタグがないため例外
(System.NullReferenceException: 'オブジェクト参照がオブジェクト
インスタンスに設定されていません。')が発生します。
どうしたら、番組のliタグを順に参照できますか?
ちなみに↓のコード例を参考にしています。
http://qiita.com/matarillo/items/a92e7efbfd2fdec62595
C#
1using AngleSharp.Dom.Html; 2using AngleSharp.Parser.Html; 3using System; 4using System.Collections.Generic; 5using System.Linq; 6using System.Net.Http; 7using System.Text; 8using System.Threading.Tasks; 9using System.Windows; 10using System.Windows.Controls; 11using System.Windows.Data; 12using System.Windows.Documents; 13using System.Windows.Input; 14using System.Windows.Media; 15using System.Windows.Media.Imaging; 16using System.Windows.Navigation; 17using System.Windows.Shapes; 18 19namespace WpfApp1 { 20 /// <summary> 21 /// MainWindow.xaml の相互作用ロジック 22 /// </summary> 23 public partial class MainWindow : Window { 24 public MainWindow() { 25 InitializeComponent(); 26 } 27 28 private async void button_Click(object sender, RoutedEventArgs e) { 29 listBox.Items.Add(textBox.Text + "\naa\nbb"); 30 31 UpdateList("http://live.nicovideo.jp/recent?tab=common#/start_time/desc/1"); 32 UpdateList("http://live.nicovideo.jp/recent?tab=common#/start_time/desc/2"); 33 } 34 35 private async void UpdateList(string urlstring) { 36 var doc = default(IHtmlDocument); 37 using (var client = new HttpClient()) 38 using (var stream = await client.GetStreamAsync(new Uri(urlstring))) { 39 var parser = new HtmlParser(); 40 doc = await parser.ParseAsync(stream); 41 } 42 43 var ul = doc.GetElementById("onair_stream_list").GetElementsByTagName("ul"); 44 var listItems = ul[0].QuerySelectorAll("li").Select(n => { 45 var title = n.Attributes["title"].Value; 46 var status = n.QuerySelectorAll("a > ul > li"); 47 var audienceNum = status[0].QuerySelectorAll("span")[1].TextContent; 48 var commentNum = status[1].QuerySelectorAll("span")[1].TextContent; 49 if ((audienceNum != "--") && (int.Parse(audienceNum) >= 25) && (!IsExist(title))) { 50 51 return new { Title = title, AudienceNum = audienceNum, CommentNum = commentNum }; 52 } else { 53 return new { Title = "@", AudienceNum = "@", CommentNum = "@" }; 54 } 55 }); 56 57 listItems.ToList().ForEach(item => { 58 if (item.Title != "@") { 59 listBox.Items.Add(item.Title + "\n" + item.AudienceNum + "\n" + item.CommentNum); 60 } 61 }); 62 } 63 64 private bool IsExist(string title) { 65 foreach (string i in listBox.Items) { 66 if (i.Contains(title)) 67 return true; 68 } 69 return false; 70 } 71 } 72}

回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2017/09/09 00:26