Почему не работает получение ссылки на фото из xml ВКонтакте? - C#

Узнай цену своей работы

Формулировка задачи:

Здравствуйте, подскажите пожалуйста, почему не работает получение ссылки на фото из xml Вот из такой, например. http://api.vk.com/method/wall.get.xm...in=sci&count=5 Из постов информацию получает нормально.
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Drawing.Text;
  7. using System.Linq;
  8. using System.Net;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. using System.Windows.Forms;
  12. using System.Xml.Linq;
  13. namespace WindowsFormsApplication16
  14. {
  15. public partial class Form1 : Form
  16. {
  17. public Form1()
  18. {
  19. InitializeComponent();
  20. }
  21. private void button1_Click(object sender, EventArgs e)
  22. {
  23. dataGridView1.DataSource = GetVkpostslist();
  24.  
  25. }
  26. public class Vkpost
  27. {
  28. public int ID { get; set; }
  29. public int from_id { get; set; }
  30. public int owner_id { get; set; }
  31. public DateTime date { get; set; }
  32. public string post_type { get; set; }
  33. public string text { get; set; }
  34. public bool is_pinned { get; set; }
  35. public int comments { get; set; }
  36. public int likes { get; set; }
  37. public int reposts { get; set; }
  38. public attachmentslist attachmentslist { get; set; }
  39. }
  40. public class attachmentslist
  41. {
  42. public List<imginfo> img = new List<imginfo>();
  43. }
  44. public class imginfo
  45. {
  46. public string photo_75 { get; set; }
  47. public string photo_130 { get; set; }
  48. public string photo_604 { get; set; }
  49. public string idphoto { get; set; }
  50. }
  51. public List<Vkpost> GetVkpostslist()
  52. {
  53. var webRequest =
  54. HttpWebRequest.Create("http://api.vk.com/method/wall.get.xml?v=5.45&filter=all&domain=sci&count=5");
  55. var webResponse = webRequest.GetResponse();
  56. var stream = webResponse.GetResponseStream();
  57. var xmlDoc = XDocument.Load(stream);
  58. var Vkpost =
  59. from post in xmlDoc.Descendants("post")
  60. select new Vkpost
  61. {
  62. ID = Convert.ToInt32(post.Element("id").Value),
  63. text = post.Element("text").Value,
  64. likes = Convert.ToInt32(post.Element("likes").Value),
  65. attachmentslist = new attachmentslist()
  66. {
  67. img = new List<imginfo>(from im in post.Descendants("photo")
  68. select new imginfo()
  69. {
  70. photo_604 = im.Element("photo_604").Value,
  71. photo_130 = im.Element("photo_130").Value,
  72. idphoto = im.Element("id").Value,
  73. photo_75 =im.Element("photo_75").Value
  74. })
  75. }
  76. };
  77. return Vkpost.ToList();
  78. }
  79.  
  80. }
  81. }

Решение задачи: «Почему не работает получение ссылки на фото из xml ВКонтакте?»

textual
Листинг программы
  1. public class DataGridViewUrlImageCell : DataGridViewImageCell
  2. {
  3.     protected override object GetFormattedValue(object value, int rowIndex, ref DataGridViewCellStyle cellStyle, TypeConverter valueTypeConverter, TypeConverter formattedValueTypeConverter, DataGridViewDataErrorContexts context)
  4.     {
  5.         Image jpgImage = null;
  6.         using (WebClient webSource = new WebClient())
  7.         {
  8.             try
  9.             {
  10.                 byte[] data = webSource.DownloadData(value.ToString());
  11.                 using (MemoryStream pipe = new MemoryStream(data))
  12.                 {
  13.                     jpgImage = Image.FromStream(pipe);
  14.                 }
  15.             }
  16.             catch (Exception) { }
  17.         };
  18.         return jpgImage;
  19.     }
  20. }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

13   голосов , оценка 4.308 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут