我有这个循环:
for (int i = 0; i < dateTime.Count; i++)
{
link = "test" + dateTime[i].Year + dateTime[i].Month
+ dateTime[i].Day + dateTime[i].TimeOfDay.Hours
+ dateTime[i].TimeOfDay.Minutes
+ "text1" + infraredorvisual;
WebClient client1 = new WebClient();
string filePath = Path.Combine(satimagesdir, "SatImage" + i + ".GIF");
client1.DownloadFile(link, filePath);
client1.Dispose();
}
在List dateTime中我有一些项目,第一个看起来像这样:[0] = {12/01/2015 08:00:00}
我正在构建链接变量的字符串是:
texthttp://www.sat24.com/image2.ashx?region=is&time=201511280&text1
但时间格式错误 我应该链接这个字符串:
http://www.sat24.com/image2.ashx?region=is&time=201501120330&ir=True
两个字符串都只是示例。
在第一个时间是9位数:年= 2015年然后是第1/12天,时间80是时间80意味着8位。
但是日期和时间的格式应该与第二个例子类似:
year = 2015 day = 01/12 and time 0330 .... 201501120330
如何使用正确的时间和日期格式构建链接变量,如第二个示例所示?
答案 0 :(得分:2)
您可以使用DateTime.ToString
:
string result = dateTime[i].ToString("yyyyddMMHHmm");
http://msdn.microsoft.com/en-us/library/8kb3ddd4%28v=vs.110%29.aspx