91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 5.49MB
    文件類型: .rar
    金幣: 2
    下載: 0 次
    發(fā)布日期: 2023-10-31
  • 語言: C#
  • 標(biāo)簽:

資源簡介

天氣預(yù)報源碼、包括從IP獲取天氣預(yù)報,具體教程http://www.cnblogs.com/ailiangwu/archive/2009/07/22/1528342.html

資源截圖

代碼片段和文件信息

using?System;
using?System.Collections.Generic;
using?System.Linq;
using?System.Text;
using?System.Text.Regularexpressions;
using?System.Net;
using?System.xml;
using?System.IO;

using?Flashado.framework;

namespace?Flashado.Weather
{
///?城市類
public?class?City
{
private?const?string?__Url?=?“http://www.weather.com.cn/data/listinfo/city{0}.xml“;
///?名稱
public?string?Name?{?get;?set;?}
///?ID
public?string?ID?{?get;?set;?}
///?城市xml路徑
public?static?string?_CityxmlPath?=?“WeatherCity.xml“;

private?static?CityxmlInfo[]?_Citys=null;

public?static?CityxmlInfo[]?Default{
get{
if?(_Citys?==?null)
{
_Citys?=?Load(Path.GetFullPath(_CityxmlPath));
}
return?_Citys;
}
}
public?override?string?ToString()
{
return?this.Name;
}
///?獲取城市類的集合
///?城市類
public?static?City[]?GetList()
{
return?GetList(string.Empty);
}
///?獲取城市類的集合
///?城市Id
///?城市類
public?static?City[]?GetList(string?id)
{
var?url?=?string.Format(__Url?id);
using?(WebClient?wc?=?new?WebClient())
{
wc.Encoding?=?Encoding.UTF8;
string?str?=?wc.DownloadString(url);
List?citys?=?new?List();
var?cs?=?str.Split(‘‘);
foreach?(var?c?in?cs)
{
var?carr?=?c.Split(‘|‘);
citys.Add(new?City()
{
ID?=?carr[0]
Name?=?carr[1]
});
}
return?citys.ToArray();
}
}
????????///?
????????///?獲取城市代碼
????????///?

????????///?城市名稱
????????///?城市代碼
public?static?string?GetCityCodeByName(string?name){
var?city=Default.FirstOrDefaultlInfo>(c=>c.Name==name);
if(city==null){
return?string.Empty;
}
return?city.Code;
}
private?static?string?GetCityByIp(string?regex?string?input)
{
var?reg?=?new?Regex(regex);
var?match?=?reg.Matches(input);
if(match.Count==0){
return?string.Empty;
}
return?match[match.Count-1].Result(“$1“);
}
????????///?更具IP獲取城市代碼
????????///?IP庫地址
????????///?IP地址
????????///?城市代碼
public?static?string?GetCityCodeByIp(string?ipDataPathstring?ip){
IPLocation.IPLocation.IPLocate(ipDataPathip);
var?country?=?IPLocation.IPLocation.Country;
var?regex?=?new?Regex(“([^市省]+)市“);
var?match=regex.Match(country);
var?area=string.Empty;
var?province?=?string.Empty;
var?city?=?string.Empty;
var?matCity?=?Regex.Matches(country?“([^市省]+)市“);
var?matArea?=?Regex.Matches(country?“([^市省區(qū)]+)區(qū)“);
var?matProvince?=?Regex.Matches(country?“([^省]+)省“);
if(matArea.Count>0){
area?=?matArea[0].Result(“$1“);
}
if?(matProvince.Count?>?0

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----

?????文件??????60416??2009-04-02?22:20??Flashado.Weather\bin\Debug\Flashado.framework.dll

?????文件?????165376??2009-04-02?22:20??Flashado.Weather\bin\Debug\Flashado.framework.pdb

?????文件?????132756??2009-04-02?22:20??Flashado.Weather\bin\Debug\Flashado.framework.xml

?????文件??????20480??2009-07-21?18:06??Flashado.Weather\bin\Debug\Flashado.Weather.dll

?????文件??????30208??2009-07-21?18:06??Flashado.Weather\bin\Debug\Flashado.Weather.pdb

?????文件???????7290??2009-07-21?18:06??Flashado.Weather\bin\Debug\Flashado.Weather.xml

?????文件??????20480??2006-12-16?00:23??Flashado.Weather\bin\Debug\IPLocation.dll

?????文件?????139264??2005-05-30?19:22??Flashado.Weather\bin\Debug\SgmlReaderDll.dll

?????文件???????4867??2009-07-21?16:41??Flashado.Weather\City.cs

?????文件????????863??2009-05-19?18:59??Flashado.Weather\CityxmlInfo.cs

?????文件???????1243??2009-07-21?17:14??Flashado.Weather\Exponential.cs

?????文件???????3481??2009-07-20?10:12??Flashado.Weather\Flashado.Weather.csproj

?????文件????????168??2009-07-21?16:05??Flashado.Weather\Flashado.Weather.csproj.user

?????文件????????942??2009-07-21?18:06??Flashado.Weather\obj\Debug\Flashado.Weather.csproj.FileListAbsolute.txt

?????文件??????20480??2009-07-21?18:06??Flashado.Weather\obj\Debug\Flashado.Weather.dll

?????文件??????30208??2009-07-21?18:06??Flashado.Weather\obj\Debug\Flashado.Weather.pdb

?????文件??????10240??2009-07-21?17:05??Flashado.Weather\obj\Debug\Refactor\Flashado.Weather.dll

?????文件???????1400??2009-05-05?18:17??Flashado.Weather\Properties\AssemblyInfo.cs

?????文件???????7882??2009-07-21?18:03??Flashado.Weather\Weather.cs

?????文件????????900??2009-07-20?10:12??Flashado.Weather\WeatherSimple.cs

?????文件???????2244??2009-07-20?10:12??Flashado.Weather\WeatherSimpleInfo.cs

?????文件??????60416??2009-04-02?22:20??Flashado.Weather.WInForm\bin\Debug\Flashado.framework.dll

?????文件?????165376??2009-04-02?22:20??Flashado.Weather.WInForm\bin\Debug\Flashado.framework.pdb

?????文件?????132756??2009-04-02?22:20??Flashado.Weather.WInForm\bin\Debug\Flashado.framework.xml

?????文件??????20480??2009-07-21?18:06??Flashado.Weather.WInForm\bin\Debug\Flashado.Weather.dll

?????文件??????30208??2009-07-21?18:06??Flashado.Weather.WInForm\bin\Debug\Flashado.Weather.pdb

?????文件??????13824??2009-07-21?18:06??Flashado.Weather.WInForm\bin\Debug\Flashado.Weather.WInForm.exe

?????文件??????26112??2009-07-21?18:06??Flashado.Weather.WInForm\bin\Debug\Flashado.Weather.WInForm.pdb

?????文件??????14328??2009-07-22?08:50??Flashado.Weather.WInForm\bin\Debug\Flashado.Weather.WInForm.vshost.exe

?????文件????????490??2007-07-21?01:33??Flashado.Weather.WInForm\bin\Debug\Flashado.Weather.WInForm.vshost.exe.manifest

............此處省略175個文件信息

評論

共有 條評論

相關(guān)資源