摘要:
谷歌地图API位置请求 Google maps api以xml格式传回请求的地址:http://maps.google.com/maps/api/geocode/xml?latlng=39.910093,116.403945&language=zh-CN&sensor=false文件样式:This XML file does not appear to have any style information associated with it. The document tree is shown below.<GeocodeResponse><status& 阅读全文
摘要:
Thank you for registering Visual Studio 2010 Express for Windows Phone.Please copy and paste the key below into the registration window:YDK44-2WW9W-QV7PM-8P8G8-FTYDFIn addition, you will receive an email with links to help you get started. 阅读全文
摘要:
【编者按】关于MQ,我以前只是有个大概概念。譬如之前,就是根据前端送过来的消息,format成后端所需要的消息格式,并将format后的消息放入一个Queue文件中,如果消息发送成功(收到该request成功或者失败的response),该消息将从Queue文件中删除;如果与后端的链路断掉了,该消息会一直重发,直到链路连通,后者重试N次后放弃(N次:配置在文件中,譬如9999)。以下都是转载内容,包含的主题如下:初识 IBM MB与MQ ==> good消息中间件介绍IBM WebSphere MQ 编程 ==> goodIBM MQSeries的使用指南 ==> goodI 阅读全文
摘要:
//2008年4月24日System.DateTime.Now.ToString("D");//2008-4-24System.DateTime.Now.ToString("d");//2008年4月24日 16:30:15System.DateTime.Now.ToString("F");//2008年4月24日 16:30System.DateTime.Now.ToString("f");//2008-4-24 16:30:15System.DateTime.Now.ToString("G" 阅读全文
摘要:
Windows服务以前被称作NT服务,是一些运行在Windows NT、Windows 2000和Windows XP等操作系统下用户环境以外的程序…… 一.Windows服务介绍: Windows服务以前被称作NT服务,是一些运行在Windows NT、Windows 2000和Windows XP等操作系统下用户环境以外的程序。在以前,编写Windows服务程序需要程序员很强的C或C++功底。然而现在在Visual Studio.Net下,你可以运用C++或Visual C#或Visual Basic.Net很轻松的创建一个Windows服务程序。同样,你还可以运用其他任何与CLR相容.. 阅读全文