在课程顶部
public static List<string> countriescodes = new List<string>();
public static List<string> countriesnames = new List<string>();
public static List<List<string>> imagesUrls = new List<List<string>>();
在类构造函数中
public void Init()
{
if (!File.Exists(@"c:\temp\countriesandcodes.txt"))
{
w = new StreamWriter(@"c:\temp\countriesandcodes.txt");
}
else
{
lines = File.ReadAllLines(@"c:\temp\countriesandcodes.txt");
}
foreach (string countrycode in lines)
{
if (countrycode.Contains("Code"))
{
string code = countrycode.Substring(15);
countriescodes.Add(code);
}
else
{
string code = countrycode.Substring(15);
countriesnames.Add(code);
}
}
foreach (string cc in countriescodes)
{
ExtractDateAndTime("http://www.sat24.com/image2.ashx?region=" + cc);
}
ImagesLinks();
}
然后在ImagesLinks
public void ImagesLinks()
{
int cnt = 0;
foreach (string countryCode in countriescodes)
{
cnt++;
for (; cnt < DatesAndTimes.Count(); cnt++)
{
string imageUrlIrTrue = firstUrlPart + countryCode + secondUrlPart + DatesAndTimes[cnt] + thirdUrlPart + "true";
string imageUrlIrFalse = firstUrlPart + countryCode + secondUrlPart + DatesAndTimes[cnt] + thirdUrlPart + "false";
imagesUrls.Add(imageUrlIrTrue);
imagesUrls.Add(imageUrlIrFalse);
if (cnt % 10 == 0) break;
}
}
}
在imagesUrls
我想将每个countryName
添加到列表中。
例如,在imagesUrls
中,我将使用此格式的第一个列表:每个列表中的第一个项目将是国家/地区名称,然后根据每个国家/地区名称的国家/地区代码列表构建链接。
Turkey
link1
link2
.
.
.
link9
然后Lis
中的分机imagesUrls
将
Europe
link1
link2
.
.
.
link9
我想要的是在imagesUrl
中创建列表,每个列表首先包含countriesnames
列表中的国家/地区名称,然后使用countriescodes
列出此国家/地区的链接使用imageUrlIrTrue
和imageUrlIrFalse
然后在Form1
我想要阅读每个List
以及每个List
的项目。
这是filesandcodes.txt文件的一部分,用于查看格式如何: 我一般想要做的是在form1中使用这个类,这样我就可以轻松地获取每个国家/地区,所有链接都使用这两个国家/地区代码和国家/地区名称。
Country Code = eu
Country Name = Europe
Country Code = alps
Country Name = Alps
Country Code = nl
Country Name = Benelux
Country Code = de
Country Name = Germany
Country Code = sp
Country Name = Spain & Portugal
Country Code = fr
Country Name = France
这是该类的完整代码。也许这样看起来会更容易。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Net;
using System.Xml;
using HtmlAgilityPack;
using System.ComponentModel;
namespace SatelliteImages
{
class ExtractImages
{
static WebClient client;
static string htmltoextract;
public static List<string> countriescodes = new List<string>();
public static List<string> countriesnames = new List<string>();
public static List<string> DatesAndTimes = new List<string>();
public static List<List<string>> imagesUrls = new List<List<string>>();
static string firstUrlPart = "http://www.sat24.com/image2.ashx?region=";
static string secondUrlPart = "&time=";
static string thirdUrlPart = "&ir=";
StreamWriter w;
string[] lines;
public bool WebProblem = false;
public void Init()
{
if (!File.Exists(@"c:\temp\countriesandcodes.txt"))
{
w = new StreamWriter(@"c:\temp\countriesandcodes.txt");
}
else
{
lines = File.ReadAllLines(@"c:\temp\countriesandcodes.txt");
}
foreach (string countrycode in lines)
{
if (countrycode.Contains("Code"))
{
string code = countrycode.Substring(15);
countriescodes.Add(code);
}
else
{
string code = countrycode.Substring(15);
countriesnames.Add(code);
}
}
foreach (string cc in countriescodes)
{
ExtractDateAndTime("http://www.sat24.com/image2.ashx?region=" + cc);
}
ImagesLinks();
}
public void ExtractCountires()
{
try
{
htmltoextract = "http://sat24.com/en/?ir=true";//"http://sat24.com/en/";// + regions;
client = new WebClient();
client.DownloadFile(htmltoextract, @"c:\temp\sat24.html");
client.Dispose();
string tag1 = "<li><a href=\"/en/";
string tag2 = "</a></li>";
string s = System.IO.File.ReadAllText(@"c:\temp\sat24.html");
s = s.Substring(s.IndexOf(tag1));
s = s.Substring(0, s.LastIndexOf(tag2) + tag2.ToCharArray().Length);
s = s.Replace("\r", "").Replace("\n", "").Replace(" ", "");
string[] parts = s.Split(new string[] { tag1, tag2 }, StringSplitOptions.RemoveEmptyEntries);
string tag3 = "<li><ahref=\"/en/";
for (int i = 0; i < parts.Length; i++)
{
if (i == 40)
{
break;
}
string l = "";
if (parts[i].Contains(tag3))
l = parts[i].Replace(tag3, "");
if (i == 39)
{
string fff = "";
}
string z1 = l.Substring(0, l.IndexOf('"'));
if (z1.Contains("</ul></li><liclass="))
{
z1 = z1.Replace("</ul></li><liclass=", "af");
}
countriescodes.Add(z1);
countriescodes.GroupBy(n => n).Any(c => c.Count() > 1);
string z2 = parts[i].Substring(parts[i].LastIndexOf('>') + 1);
if (z2.Contains("&"))
{
z2 = z2.Replace("&", " & ");
}
countriesnames.Add(z2);
countriesnames.GroupBy(n => n).Any(c => c.Count() > 1);
}
for (int i = 0; i < countriescodes.Count; i++)
{
w.WriteLine("Country Code = " + countriescodes[i]);
w.WriteLine("Country Name = " + countriesnames[i]);
}
w.Close();
}
catch (Exception e)
{
if (countriescodes.Count == 0)
{
/*countriescodes = new List<string>();
countriesnames = new List<string>();
DatesAndTimes = new List<string>();
imagesUrls = new List<string>();
Init();*/
}
}
}
public void ExtractDateAndTime(string baseAddress)
{
try
{
var wc = new WebClient();
wc.BaseAddress = baseAddress;
HtmlDocument doc = new HtmlDocument();
var temp = wc.DownloadData("/en");
doc.Load(new MemoryStream(temp));
var secTokenScript = doc.DocumentNode.Descendants()
.Where(e =>
String.Compare(e.Name, "script", true) == 0 &&
String.Compare(e.ParentNode.Name, "div", true) == 0 &&
e.InnerText.Length > 0 &&
e.InnerText.Trim().StartsWith("var region")
).FirstOrDefault().InnerText;
var securityToken = secTokenScript;
securityToken = securityToken.Substring(0, securityToken.IndexOf("arrayImageTimes.push"));
securityToken = secTokenScript.Substring(securityToken.Length).Replace("arrayImageTimes.push('", "").Replace("')", "");
var dates = securityToken.Trim().Split(new string[] { ";" }, StringSplitOptions.RemoveEmptyEntries);
var scriptDates = dates.Select(x => new ScriptDate { DateString = x });
foreach (var date in scriptDates)
{
DatesAndTimes.Add(date.DateString);
}
}
catch(WebException wex)
{
WebProblem = true;
}
}
public class ScriptDate
{
public string DateString { get; set; }
public int Year
{
get
{
return Convert.ToInt32(this.DateString.Substring(0, 4));
}
}
public int Month
{
get
{
return Convert.ToInt32(this.DateString.Substring(4, 2));
}
}
public int Day
{
get
{
return Convert.ToInt32(this.DateString.Substring(6, 2));
}
}
public int Hours
{
get
{
return Convert.ToInt32(this.DateString.Substring(8, 2));
}
}
public int Minutes
{
get
{
return Convert.ToInt32(this.DateString.Substring(10, 2));
}
}
}
public void ImagesLinks()
{
int cnt = 0;
foreach (string countryCode in countriescodes)
{
cnt++;
for (; cnt < DatesAndTimes.Count(); cnt++)
{
string imageUrlIrTrue = firstUrlPart + countryCode + secondUrlPart + DatesAndTimes[cnt] + thirdUrlPart + "true";
string imageUrlIrFalse = firstUrlPart + countryCode + secondUrlPart + DatesAndTimes[cnt] + thirdUrlPart + "false";
imagesUrls.Add(imageUrlIrTrue);
imagesUrls.Add(imageUrlIrFalse);
if (cnt % 10 == 0) break;
}
}
}
}
}
我尝试将类添加到类
public class Country
{
public List<Tuple<Uri, bool>> URLList { get; set; }
public string Code { get; set; }
}
不确定如何使用属性代码。 我添加了一个bool到列表,因为我想这样做当我循环在form1中的列表时,我会像在ImagesLinks方法中那样有真假的链接:
string imageUrlIrTrue = firstUrlPart + countryCode + secondUrlPart + DatesAndTimes[cnt] + thirdUrlPart + "true";
string imageUrlIrFalse = firstUrlPart + countryCode + secondUrlPart + DatesAndTimes[cnt] + thirdUrlPart + "false";
但也许在List中使用bool并使其成为Tuple我应该将其更改回List并以其他方式使用bool来构建链接。
一般来说,我希望在form1中我能够获得3个参数:
图片链接。
国家代码。
链接应为true而false不是bool,而是作为链接的一部分,例如:
imageUrlIrTrue:
http://www.sat24.com/image2.ashx?region=is&time=201701161900&ir=true
虚假:
http://www.sat24.com/image2.ashx?region=is&time=201701161900&ir=false
每个国家/地区都有9个由国家/地区代码和日期和时间构成的链接。 所以在form1中,我应该有类似列表的列表。 例如,类Country应该具有一个属性,如果我在form1中键入:Country.Country.Turkey
然后我应该以某种方式还有火鸡的9个链接和火鸡的代码。
不仅要获得国家/地区和代码,而且每个国家/地区的每9个链接实际上每个国家/地区有18个链接,因为每个链接都是双真/假。
所以每个国家都有18个链接!我应该能够在form1的循环中访问它们,并访问国家代码和名称。
所以在form1中我应该有一个循环,我可以很容易地获得国家名称获得每个国家18个链接(真假)和每个国家代码!!!
答案 0 :(得分:3)
这在技术上可能不是答案,但更好的方法是创建一个名为&#34; Country&#34;并为其提供网址,国家/地区名称等属性。然后,您只需创建一个(国家/地区)列表并填充每个。
** Daniel d e junior的注意事项 (如果你能为我提供countriesandcodes.txt的样子,我会用代码示例编辑它)
答案 1 :(得分:1)
我想要的是在imagesUrls中创建列表,每个列表首先包含来自countriesnames列表的国家/地区名称,然后使用countriesUrlIrTrue和imageUrlIrFalse使用countriescodes列表来显示该国家/地区的链接
不确定是什么&#34;我想要的是在imagesUrls&#34;中创建列表。实际上意味着。
我的问题是你为什么要这样做?你真正需要做的是使用第一个编程,除了你需要考虑你需要的类。
这是一个例子: 我们假设您有每个国家/地区的图片网址列表
class Country
{
List<URL> URLList;
}
国家/地区也有国家/地区代码
class Country
{
public List<URL> URLList{get;set;}
public string Code {get;set;}
}
现在你可以抓住一个国家并通过它的网址循环。 尝试使用某些类并修改您的问题,在更新时ping我,然后我会修改此答案以匹配问题。