<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>盲降进近</title>
	<atom:link href="http://zhangqi.name/feed" rel="self" type="application/rss+xml" />
	<link>http://zhangqi.name</link>
	<description>得之泰然，失之淡然，争之必然，顺其自然</description>
	<lastBuildDate>Sun, 04 Mar 2012 15:19:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>NSString+NSMutableString+NSValue+NSAraay用法汇总(很不错的哦)</title>
		<link>http://zhangqi.name/2012/03/nsstringnsmutablestringnsvaluensaraay%e7%94%a8%e6%b3%95%e6%b1%87%e6%80%bb%e5%be%88%e4%b8%8d%e9%94%99%e7%9a%84%e5%93%a6.zhangqi</link>
		<comments>http://zhangqi.name/2012/03/nsstringnsmutablestringnsvaluensaraay%e7%94%a8%e6%b3%95%e6%b1%87%e6%80%bb%e5%be%88%e4%b8%8d%e9%94%99%e7%9a%84%e5%93%a6.zhangqi#comments</comments>
		<pubDate>Sun, 04 Mar 2012 15:19:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://zhangqi.name/?p=1072</guid>
		<description><![CDATA[&#160; 开发过程中难免遇到字符串操作，下面是为您总结的NSString+NSMutableString+NSValue+NSAraay用法汇总，帮您应对各种字符串操作。 //一、NSString /*&#8212;&#8212;&#8212;&#8212;&#8212;-创建字符串的方法&#8212;&#8212;&#8212;&#8212;&#8212;-*/ //1、创建常量字符串。 NSString *astring = @&#8221;This is a String!&#8221;; //2、创建空字符串，给予赋值。 NSString *astring = [[NSString alloc] init]; astring = @&#8221;This is a String!&#8221;; NSLog(@&#8221;astring:%@&#8221;,astring); [astring release]; //3、在以上方法中，提升速度:initWithString方法 NSString *astring = [[NSString alloc] initWithString:@&#8221;This is a String!&#8221;]; NSLog(@&#8221;astring:%@&#8221;,astring); [astring release]; //4、用标准c创建字符串:initWithCString方法 char *Cstring = &#8220;This is a String!&#8221;; NSString *astring = [[NSString alloc] initWithCString:Cstring]; [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>开发过程中难免遇到字符串操作，下面是为您总结的NSString+NSMutableString+NSValue+NSAraay用法汇总，帮您应对各种字符串操作。</p>
<p>//一、NSString<br />
/*&#8212;&#8212;&#8212;&#8212;&#8212;-创建字符串的方法&#8212;&#8212;&#8212;&#8212;&#8212;-*/</p>
<p>//1、创建常量字符串。<br />
NSString *astring = @&#8221;This is a String!&#8221;;</p>
<p>//2、创建空字符串，给予赋值。</p>
<p>NSString *astring = [[NSString alloc] init];<br />
astring = @&#8221;This is a String!&#8221;;<br />
NSLog(@&#8221;astring:%@&#8221;,astring);<br />
[astring release];</p>
<p>//3、在以上方法中，提升速度:initWithString方法</p>
<p>NSString *astring = [[NSString alloc] initWithString:@&#8221;This is a String!&#8221;];<br />
NSLog(@&#8221;astring:%@&#8221;,astring);<br />
[astring release];</p>
<p>//4、用标准c创建字符串:initWithCString方法</p>
<p>char *Cstring = &#8220;This is a String!&#8221;;<br />
NSString *astring = [[NSString alloc] initWithCString:Cstring];<br />
NSLog(@&#8221;astring:%@&#8221;,astring);<br />
[astring release];</p>
<p>//5、创建格式化字符串:占位符（由一个%加一个字符组成）</p>
<p>int i = 1;<br />
int j = 2;<br />
NSString *astring = [[NSString alloc] initWithString:[NSString stringWithFormat:@"%d.This is %i string!",i,j]];<br />
NSLog(@&#8221;astring:%@&#8221;,astring);<br />
[astring release];</p>
<p>//6、创建临时字符串</p>
<p>NSString *astring;<br />
astring = [NSString stringWithCString:"This is a temporary string"];<br />
NSLog(@&#8221;astring:%@&#8221;,astring);</p>
<p>/*&#8212;&#8212;&#8212;&#8212;&#8212;-从文件读取字符串:initWithContentsOfFile方法 &#8212;&#8212;&#8212;&#8212;&#8212;-*/</p>
<p>NSString *path = @&#8221;astring.text&#8221;;<br />
NSString *astring = [[NSString alloc] initWithContentsOfFile:path];<br />
NSLog(@&#8221;astring:%@&#8221;,astring);<br />
[astring release];</p>
<p>/*&#8212;&#8212;&#8212;&#8212;&#8212;-写字符串到文件:writeToFile方法 &#8212;&#8212;&#8212;&#8212;&#8212;-*/</p>
<p>NSString *astring = [[NSString alloc] initWithString:@&#8221;This is a String!&#8221;];<br />
NSLog(@&#8221;astring:%@&#8221;,astring);<br />
NSString *path = @&#8221;astring.text&#8221;;<br />
[astring writeToFile: path atomically: YES];<br />
[astring release];</p>
<p>/*&#8212;&#8212;&#8212;&#8212;&#8212;- 比较两个字符串&#8212;&#8212;&#8212;&#8212;&#8212;-*/</p>
<p>//用C比较:strcmp函数</p>
<p>char string1[] = &#8220;string!&#8221;;<br />
char string2[] = &#8220;string!&#8221;;<br />
if(strcmp(string1, string2) = = 0)<br />
{<br />
NSLog(@&#8221;1&#8243;);<br />
}</p>
<p>//isEqualToString方法<br />
NSString *astring01 = @&#8221;This is a String!&#8221;;<br />
NSString *astring02 = @&#8221;This is a String!&#8221;;<br />
BOOL result = [astring01 isEqualToString:astring02];<br />
NSLog(@&#8221;result:%d&#8221;,result);</p>
<p>//compare方法(comparer返回的三种值)<br />
NSString *astring01 = @&#8221;This is a String!&#8221;;<br />
NSString *astring02 = @&#8221;This is a String!&#8221;;<br />
BOOL result = [astring01 compare:astring02] = = NSOrderedSame;<br />
NSLog(@&#8221;result:%d&#8221;,result);<br />
//NSOrderedSame 判断两者内容是否相同</p>
<p>NSString *astring01 = @&#8221;This is a String!&#8221;;<br />
NSString *astring02 = @&#8221;this is a String!&#8221;;<br />
BOOL result = [astring01 compare:astring02] = = NSOrderedAscending;<br />
NSLog(@&#8221;result:%d&#8221;,result);<br />
//NSOrderedAscending 判断两对象值的大小(按字母顺序进行比较，astring02大于astring01为真)</p>
<p>NSString *astring01 = @&#8221;this is a String!&#8221;;<br />
NSString *astring02 = @&#8221;This is a String!&#8221;;<br />
BOOL result = [astring01 compare:astring02] = = NSOrderedDescending;<br />
NSLog(@&#8221;result:%d&#8221;,result);<br />
//NSOrderedDescending 判断两对象值的大小(按字母顺序进行比较，astring02小于astring01为真)</p>
<p>//不考虑大 小写比较字符串1<br />
NSString *astring01 = @&#8221;this is a String!&#8221;;<br />
NSString *astring02 = @&#8221;This is a String!&#8221;;<br />
BOOL result = [astring01 caseInsensitiveCompare:astring02] = = NSOrderedSame;<br />
NSLog(@&#8221;result:%d&#8221;,result);<br />
//NSOrderedDescending判断两对象值的大小(按字母顺序进行比较，astring02小于astring01为 真)</p>
<p>//不考虑大小写比较字符串2<br />
NSString *astring01 = @&#8221;this is a String!&#8221;;<br />
NSString *astring02 = @&#8221;This is a String!&#8221;;<br />
BOOL result = [astring01 compare:astring02<br />
options:NSCaseInsensitiveSearch | NSNumericSearch] = = NSOrderedSame;<br />
NSLog(@&#8221;result:%d&#8221;,result);</p>
<p>//NSCaseInsensitiveSearch:不区分大小写比较 NSLiteralSearch:进行完全比较，区分大小写 NSNumericSearch:比较字符串的字符个数，而不是字符值。</p>
<p>/*&#8212;&#8212;&#8212;&#8212;&#8212;-改变字符串的大小写&#8212;&#8212;&#8212;&#8212;&#8212;-*/</p>
<p>NSString *string1 = @&#8221;A String&#8221;;<br />
NSString *string2 = @&#8221;String&#8221;;<br />
NSLog(@&#8221;string1:%@&#8221;,[string1 uppercaseString]);//大写<br />
NSLog(@&#8221;string2:%@&#8221;,[string2 lowercaseString]);//小写<br />
NSLog(@&#8221;string2:%@&#8221;,[string2 capitalizedString]);//首字母大小</p>
<p>/*&#8212;&#8212;&#8212;&#8212;&#8212;-在串中搜索子串 &#8212;&#8212;&#8212;&#8212;&#8212;-*/</p>
<p>NSString *string1 = @&#8221;This is a string&#8221;;<br />
NSString *string2 = @&#8221;string&#8221;;<br />
NSRange range = [string1 rangeOfString:string2];<br />
int location = range.location;<br />
int leight = range.length;<br />
NSString *astring = [[NSString alloc] initWithString:[NSString stringWithFormat:@"Location:%i,Leight:%i",location,leight]];<br />
NSLog(@&#8221;astring:%@&#8221;,astring);<br />
[astring release];</p>
<p>/*&#8212;&#8212;&#8212;&#8212;&#8212;-抽取子串 &#8212;&#8212;&#8212;&#8212;&#8212;-*/</p>
<p>//-substringToIndex: 从字符串的开头一直截取到指定的位置，但不包括该位置的字符<br />
NSString *string1 = @&#8221;This is a string&#8221;;<br />
NSString *string2 = [string1 substringToIndex:3];<br />
NSLog(@&#8221;string2:%@&#8221;,string2);</p>
<p>//-substringFromIndex: 以指定位置开始（包括指定位置的字符），并包括之后的全部字符<br />
NSString *string1 = @&#8221;This is a string&#8221;;<br />
NSString *string2 = [string1 substringFromIndex:3];<br />
NSLog(@&#8221;string2:%@&#8221;,string2);</p>
<p>//-substringWithRange: //按照所给出的位置，长度，任意地从字符串中截取子串<br />
NSString *string1 = @&#8221;This is a string&#8221;;<br />
NSString *string2 = [string1 substringWithRange:NSMakeRange(0, 4)];<br />
NSLog(@&#8221;string2:%@&#8221;,string2);<br />
//快速枚举<br />
//for(NSString *filename in direnum)<br />
//{<br />
// if([[filename pathExtension] isEqualToString:@&#8221;jpg&#8221;]){<br />
// [files addObject:filename];<br />
// }<br />
//}<br />
NSLog(@&#8221;files:%@&#8221;,files);</p>
<p>//枚举<br />
NSEnumerator *filenum;<br />
filenum = [files objectEnumerator];<br />
while (filename = [filenum nextObject]) {<br />
NSLog(@&#8221;filename:%@&#8221;,filename);<br />
}<br />
@&#8221;b&#8221;,@&#8221;a&#8221;,@&#8221;e&#8221;,@&#8221;d&#8221;,@&#8221;c&#8221;,@&#8221;f&#8221;,@&#8221;h&#8221;,@&#8221;g&#8221;,nil];<br />
NSLog(@&#8221;oldArray:%@&#8221;,oldArray);<br />
NSEnumerator *enumerator;<br />
enumerator = [oldArray objectEnumerator];<br />
id obj;<br />
while(obj = [enumerator nextObject])<br />
{<br />
[newArray addObject: obj];<br />
}<br />
[newArray sortUsingSelector:@selector(compare:)];<br />
NSLog(@&#8221;newArray:%@&#8221;, newArray);<br />
[newArray release];</p>
<p>/*&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; 切分数组&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;*/</p>
<p>//从字符串分割到数组－ componentsSeparatedByString:<br />
NSString *string = [[NSString alloc] initWithString:@&#8221;One,Two,Three,Four&#8221;];<br />
NSLog(@&#8221;string:%@&#8221;,string);<br />
NSArray *array = [string componentsSeparatedByString:@","];<br />
NSLog(@&#8221;array:%@&#8221;,array);<br />
[string release];</p>
<p>//从数组合并元素到字符串- componentsJoinedByString:<br />
NSArray *array = [[NSArray alloc] initWithObjects:@&#8221;One&#8221;,@&#8221;Two&#8221;,@&#8221;Three&#8221;,@&#8221;Four&#8221;,nil];<br />
NSString *string = [array componentsJoinedByString:@","];<br />
NSLog(@&#8221;string:%@&#8221;,string);</p>
<p>/************************************************************************<br />
NSMutableArray<br />
*************************************************************************/<br />
/*&#8212;&#8212;&#8212;&#8212;&#8212; 给数组分配容量&#8212;&#8212;&#8212;&#8212;&#8212;-*/<br />
//NSArray *array;<br />
array = [NSMutableArray arrayWithCapacity:20];</p>
<p>/*&#8212;&#8212;&#8212;&#8212;&#8211; 在数组末尾添加对象&#8212;&#8212;&#8212;&#8212;&#8212;-*/<br />
//- (void) addObject: (id) anObject;<br />
//NSMutableArray *array = [NSMutableArray arrayWithObjects:<br />
@"One",@"Two",@"Three",nil];<br />
[array addObject:@"Four"];<br />
NSLog(@&#8221;array:%@&#8221;,array);</p>
<p>/*&#8212;&#8212;&#8212;&#8212;&#8211; 删除数组中指定索引处对象&#8212;&#8212;&#8212;&#8212;&#8212;-*/<br />
//-(void) removeObjectAtIndex: (unsigned) index;<br />
//NSMutableArray *array = [NSMutableArray arrayWithObjects:<br />
@"One",@"Two",@"Three",nil];<br />
[array removeObjectAtIndex:1];<br />
NSLog(@&#8221;array:%@&#8221;,array);</p>
<p>/*&#8212;&#8212;&#8212;&#8212;- 数组枚举&#8212;&#8212;&#8212;&#8212;&#8212;*/<br />
//- (NSEnumerator *)objectEnumerator;从前向后<br />
//NSMutableArray *array = [NSMutableArray arrayWithObjects:<br />
@"One",@"Two",@"Three",nil];<br />
NSEnumerator *enumerator;<br />
enumerator = [array objectEnumerator];</p>
<p>id thingie;<br />
while (thingie = [enumerator nextObject]) {<br />
NSLog(@&#8221;thingie:%@&#8221;,thingie);<br />
}</p>
<p>//- (NSEnumerator *)reverseObjectEnumerator;从后向前<br />
//NSMutableArray *array = [NSMutableArray arrayWithObjects:<br />
@"One",@"Two",@"Three",nil];<br />
NSEnumerator *enumerator;<br />
enumerator = [array reverseObjectEnumerator];</p>
<p>id object;<br />
while (object = [enumerator nextObject]) {<br />
NSLog(@&#8221;object:%@&#8221;,object);<br />
}</p>
<p>//快速枚举<br />
//NSMutableArray *array = [NSMutableArray arrayWithObjects:<br />
@"One",@"Two",@"Three",nil];<br />
for(NSString *string in array)<br />
{<br />
NSLog(@&#8221;string:%@&#8221;,string);<br />
}</p>
<p>/*****************************************************************************<br />
NSDictionary<br />
***************************************************************************/</p>
<p>/*&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;创建字典 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;*/<br />
//- (id) initWithObjectsAndKeys;</p>
<p>//NSDictionary *dictionary = [[NSDictionary alloc] initWithObjectsAndKeys:@&#8221;One&#8221;,@&#8221;1&#8243;,@&#8221;Two&#8221;,@&#8221;2&#8243;,@&#8221;Three&#8221;,@&#8221;3&#8243;,nil];<br />
NSString *string = [dictionary objectForKey:@"One"];<br />
NSLog(@&#8221;string:%@&#8221;,string);<br />
NSLog(@&#8221;dictionary:%@&#8221;,dictionary);<br />
[dictionary release];</p>
<p>/********************************************************************************<br />
NSMutableDictionary<br />
********************************************************************************/</p>
<p>/*&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;创建可变字典 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;*/<br />
//创建<br />
NSMutableDictionary *dictionary = [NSMutableDictionary dictionary];</p>
<p>//添加字典<br />
[dictionary setObject:@"One" forKey:@"1"];<br />
[dictionary setObject:@"Two" forKey:@"2"];<br />
[dictionary setObject:@"Three" forKey:@"3"];<br />
[dictionary setObject:@"Four" forKey:@"4"];<br />
NSLog(@&#8221;dictionary:%@&#8221;,dictionary);</p>
<p>//删除指定的字典<br />
[dictionary removeObjectForKey:@"3"];<br />
NSLog(@&#8221;dictionary:%@&#8221;,dictionary);</p>
<p>/******************************************************************************<br />
NSValue（对任何对象进行包装）<br />
****************************************************************************/</p>
<p>/*&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;将NSRect放入NSArray中 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;*/<br />
//将NSRect放入NSArray中<br />
NSMutableArray *array = [[NSMutableArray alloc] init];<br />
NSValue *value;<br />
CGRect rect = CGRectMake(0, 0, 320, 480);<br />
value = [NSValue valueWithBytes:&amp;rect objCType:@encode(CGRect)];<br />
[array addObject:value];<br />
NSLog(@&#8221;array:%@&#8221;,array);</p>
<p>//从Array中 提取<br />
value = [array objectAtIndex:0];<br />
[value getValue:&amp;rect];<br />
NSLog(@&#8221;value:%@&#8221;,value);</p>
<p>/**************************************************************************<br />
从目录搜索扩展名为jpg的文件<br />
*****************************************************************************/</p>
<p>//NSFileManager *fileManager = [NSFileManager defaultManager];<br />
NSString *home;<br />
home = @&#8221;../Users/&#8221;;</p>
<p>NSDirectoryEnumerator *direnum;<br />
direnum = [fileManager enumeratorAtPath: home];</p>
<p>NSMutableArray *files = [[NSMutableArray alloc] init];</p>
<p>//枚举<br />
NSString *filename;<br />
while (filename = [direnum nextObject]) {<br />
if([[filename pathExtension] hasSuffix:@&#8221;jpg&#8221;]){<br />
[files addObject:filename];<br />
}<br />
}<br />
//扩展路径</p>
<p>NSString *Path = @&#8221;~/NSData.txt&#8221;;<br />
NSString *absolutePath = [Path stringByExpandingTildeInPath];<br />
NSLog(@&#8221;absolutePath:%@&#8221;,absolutePath);<br />
NSLog(@&#8221;Path:%@&#8221;,[absolutePath stringByAbbreviatingWithTildeInPath]);</p>
<p>//文件扩展名<br />
NSString *Path = @&#8221;~/NSData.txt&#8221;;<br />
NSLog(@&#8221;Extension:%@&#8221;,[Path pathExtension]);</p>
<p>/***********************************************************************<br />
NSMutableString<br />
***********************************************************************/</p>
<p>/*&#8212;&#8212;&#8212;&#8212;&#8212;给字符串分配容量&#8212;&#8212;&#8212;&#8212;&#8212;-*/<br />
//stringWithCapacity:<br />
NSMutableString *String;<br />
String = [NSMutableString stringWithCapacity:40];</p>
<p>/*&#8212;&#8212;&#8212;&#8212;&#8212;在已有字符串后面添加字符&#8212;&#8212;&#8212;&#8212;&#8212;-*/</p>
<p>//appendString: and appendFormat:</p>
<p>NSMutableString *String1 = [[NSMutableString alloc] initWithString:@&#8221;This is a NSMutableString&#8221;];<br />
//[String1 appendString:@", I will be adding some character"];<br />
[String1 appendFormat:[NSString stringWithFormat:@", I will be adding some character"]];<br />
NSLog(@&#8221;String1:%@&#8221;,String1);<br />
*/</p>
<p>/*&#8212;&#8212;&#8211; 在已有字符串中按照所给出范围和长度删除字符&#8212;&#8212;*/<br />
/*<br />
//deleteCharactersInRange:<br />
NSMutableString *String1 = [[NSMutableString alloc] initWithString:@&#8221;This is a NSMutableString&#8221;];<br />
[String1 deleteCharactersInRange:NSMakeRange(0, 5)];<br />
NSLog(@&#8221;String1:%@&#8221;,String1);</p>
<p>/*&#8212;&#8212;&#8211;在已有字符串后面在所指定的位置中插入给出的字符串&#8212;&#8212;*/</p>
<p>//-insertString: atIndex:<br />
NSMutableString *String1 = [[NSMutableString alloc] initWithString:@&#8221;This is a NSMutableString&#8221;];<br />
[String1 insertString:@"Hi! " atIndex:0];<br />
NSLog(@&#8221;String1:%@&#8221;,String1);</p>
<p>/*&#8212;&#8212;&#8211;将已有的空符串换成其它的字符串&#8212;&#8212;*/</p>
<p>//-setString:<br />
NSMutableString *String1 = [[NSMutableString alloc] initWithString:@&#8221;This is a NSMutableString&#8221;];<br />
[String1 setString:@"Hello Word!"];<br />
NSLog(@&#8221;String1:%@&#8221;,String1);</p>
<p>/*&#8212;&#8212;&#8211;按照所给出的范围，和字符串替换的原有的字符&#8212;&#8212;*/</p>
<p>//-setString:<br />
NSMutableString *String1 = [[NSMutableString alloc] initWithString:@&#8221;This is a NSMutableString&#8221;];<br />
[String1 replaceCharactersInRange:NSMakeRange(0, 4) withString:@"That"];<br />
NSLog(@&#8221;String1:%@&#8221;,String1);</p>
<p>/*&#8212;&#8212;&#8212;&#8212;-判断字符串内是否还包含别的字符串(前缀，后缀)&#8212;&#8212;&#8212;&#8212;-*/<br />
//01： 检查字符串是否以另一个字符串开头- (BOOL) hasPrefix: (NSString *) aString;<br />
NSString *String1 = @&#8221;NSStringInformation.txt&#8221;;<br />
[String1 hasPrefix:@"NSString"] = = 1 ? NSLog(@&#8221;YES&#8221;) : NSLog(@&#8221;NO&#8221;);<br />
[String1 hasSuffix:@".txt"] = = 1 ? NSLog(@&#8221;YES&#8221;) : NSLog(@&#8221;NO&#8221;);</p>
<p>//02： 查找字符串某处是否包含其它字符串 &#8211; (NSRange) rangeOfString: (NSString *) aString，这一点前面在串中搜索子串用到过;</p>
<p>/**************************************************************************<br />
NSArray<br />
****************************************************************************/</p>
<p>/*&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;创建数组 &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;*/<br />
//NSArray *array = [[NSArray alloc] initWithObjects:<br />
@&#8221;One&#8221;,@&#8221;Two&#8221;,@&#8221;Three&#8221;,@&#8221;Four&#8221;,nil];</p>
<p>self.dataArray = array;<br />
[array release];</p>
<p>//- (unsigned) Count;数组所包含对象个数；<br />
NSLog(@&#8221;self.dataArray cound:%d&#8221;,[self.dataArray count]);</p>
<p>//- (id) objectAtIndex: (unsigned int) index;获取指定索引处的对象;<br />
NSLog(@&#8221;self.dataArray cound 2:%@&#8221;,[self.dataArray objectAtIndex:2]);</p>
<p>/*&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; 从一个数组拷贝数据到另一数组(可变数级)&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-*/</p>
<p>//arrayWithArray:<br />
//NSArray *array1 = [[NSArray alloc] init];<br />
NSMutableArray *MutableArray = [[NSMutableArray alloc] init];<br />
NSArray *array = [NSArray arrayWithObjects:<br />
@"a",@"b",@"c",nil];<br />
NSLog(@&#8221;array:%@&#8221;,array);<br />
MutableArray = [NSMutableArray arrayWithArray:array];<br />
NSLog(@&#8221;MutableArray:%@&#8221;,MutableArray);</p>
<p>array1 = [NSArray arrayWithArray:array];<br />
NSLog(@&#8221;array1:%@&#8221;,array1);</p>
<p>//Copy</p>
<p>//id obj;<br />
NSMutableArray *newArray = [[NSMutableArray alloc] init];<br />
NSArray *oldArray = [NSArray arrayWithObjects:<br />
@"a",@"b",@"c",@"d",@"e",@"f",@"g",@"h",nil];</p>
<p>NSLog(@&#8221;oldArray:%@&#8221;,oldArray);<br />
for(int i = 0; i &lt; [oldArray count]; i++)<br />
{<br />
obj = [[oldArray objectAtIndex:i] copy];<br />
[newArray addObject: obj];<br />
}<br />
//<br />
NSLog(@&#8221;newArray:%@&#8221;, newArray);<br />
[newArray release];</p>
<p>//快速枚举</p>
<p>//NSMutableArray *newArray = [[NSMutableArray alloc] init];<br />
NSArray *oldArray = [NSArray arrayWithObjects:<br />
@"a",@"b",@"c",@"d",@"e",@"f",@"g",@"h",nil];<br />
NSLog(@&#8221;oldArray:%@&#8221;,oldArray);</p>
<p>for(id obj in oldArray)<br />
{<br />
[newArray addObject: obj];<br />
}<br />
//<br />
NSLog(@&#8221;newArray:%@&#8221;, newArray);<br />
[newArray release];</p>
<p>//Deep copy</p>
<p>//NSMutableArray *newArray = [[NSMutableArray alloc] init];<br />
NSArray *oldArray = [NSArray arrayWithObjects:<br />
@"a",@"b",@"c",@"d",@"e",@"f",@"g",@"h",nil];<br />
NSLog(@&#8221;oldArray:%@&#8221;,oldArray);<br />
newArray = (NSMutableArray*)CFPropertyListCreateDeepCopy(kCFAllocatorDefault, (CFPropertyListRef)oldArray, kCFPropertyListMutableContainers);<br />
NSLog(@&#8221;newArray:%@&#8221;, newArray);<br />
[newArray release];</p>
<p>//Copy and sort</p>
<p>//NSMutableArray *newArray = [[NSMutableArray alloc] init];<br />
NSArray *oldArray = [NSArray arrayWithObjects:</p>
By the time  your rss reader get this post here is <strong> 1 </strong>comments ,Welcome you come to leave your opinion !]]></content:encoded>
			<wfw:commentRss>http://zhangqi.name/2012/03/nsstringnsmutablestringnsvaluensaraay%e7%94%a8%e6%b3%95%e6%b1%87%e6%80%bb%e5%be%88%e4%b8%8d%e9%94%99%e7%9a%84%e5%93%a6.zhangqi/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>哥现在玩新浪微博</title>
		<link>http://zhangqi.name/2011/02/%e5%93%a5%e7%8e%b0%e5%9c%a8%e7%8e%a9%e6%96%b0%e6%b5%aa%e5%be%ae%e5%8d%9a.zhangqi</link>
		<comments>http://zhangqi.name/2011/02/%e5%93%a5%e7%8e%b0%e5%9c%a8%e7%8e%a9%e6%96%b0%e6%b5%aa%e5%be%ae%e5%8d%9a.zhangqi#comments</comments>
		<pubDate>Mon, 21 Feb 2011 01:21:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[日记]]></category>

		<guid isPermaLink="false">http://zhangqi.name/?p=1068</guid>
		<description><![CDATA[好久没更新博客了 都长草了 哥现在玩的是新浪微博 http://t.sina.com.cn/zhangqi1982 或 @章小嘟她爹 By the time your rss reader get this post here is 8 comments ,Welcome you come to leave your opinion !]]></description>
			<content:encoded><![CDATA[<p>好久没更新博客了<br />
都长草了<br />
哥现在玩的是新浪微博<br />
<a href="http://t.sina.com.cn/zhangqi1982">http://t.sina.com.cn/zhangqi1982</a><br />
或<br />
<a href="http://t.sina.com.cn/zhangqi1982">@章小嘟她爹</a></p>
By the time  your rss reader get this post here is <strong> 8 </strong>comments ,Welcome you come to leave your opinion !]]></content:encoded>
			<wfw:commentRss>http://zhangqi.name/2011/02/%e5%93%a5%e7%8e%b0%e5%9c%a8%e7%8e%a9%e6%96%b0%e6%b5%aa%e5%be%ae%e5%8d%9a.zhangqi/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>C#计算时间差</title>
		<link>http://zhangqi.name/2011/01/c%e8%ae%a1%e7%ae%97%e6%97%b6%e9%97%b4%e5%b7%ae.zhangqi</link>
		<comments>http://zhangqi.name/2011/01/c%e8%ae%a1%e7%ae%97%e6%97%b6%e9%97%b4%e5%b7%ae.zhangqi#comments</comments>
		<pubDate>Sat, 01 Jan 2011 13:43:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[程序]]></category>

		<guid isPermaLink="false">http://zhangqi.name/?p=1065</guid>
		<description><![CDATA[C#计算时间差 //计算耗时任务所需的秒数 public int GetTimeSpan(DateTime dtStart, DateTime dtEnd) { TimeSpan tsStart = new TimeSpan(dtStart.Ticks); TimeSpan tsEnd = new TimeSpan(dtEnd.Ticks); TimeSpan ts = tsEnd.Subtract(tsStart).Duration();//秒 //dateDiff = ts.Days.ToString() + &#8220;天&#8221; + ts.Hours.ToString() + &#8220;小时&#8221; + ts.Minutes.ToString() + &#8220;分钟&#8221; + ts.Seconds.ToString() + &#8220;秒&#8221;; return ts.Seconds; } By the time your rss reader get this post here is 1 [...]]]></description>
			<content:encoded><![CDATA[<p>C#计算时间差<br />
//计算耗时任务所需的秒数<br />
 public int GetTimeSpan(DateTime dtStart, DateTime dtEnd)<br />
 {<br />
      TimeSpan tsStart = new TimeSpan(dtStart.Ticks);<br />
      TimeSpan tsEnd = new TimeSpan(dtEnd.Ticks);</p>
<p>      TimeSpan ts = tsEnd.Subtract(tsStart).Duration();//秒</p>
<p>      //dateDiff = ts.Days.ToString() + &#8220;天&#8221; + ts.Hours.ToString() + &#8220;小时&#8221; + ts.Minutes.ToString() + &#8220;分钟&#8221; + ts.Seconds.ToString() + &#8220;秒&#8221;;</p>
<p>      return ts.Seconds;</p>
<p> }</p>
By the time  your rss reader get this post here is <strong> 1 </strong>comments ,Welcome you come to leave your opinion !]]></content:encoded>
			<wfw:commentRss>http://zhangqi.name/2011/01/c%e8%ae%a1%e7%ae%97%e6%97%b6%e9%97%b4%e5%b7%ae.zhangqi/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>C#关于DateTime得到的当前时间和转换 详解</title>
		<link>http://zhangqi.name/2010/12/c%e5%85%b3%e4%ba%8edatetime%e5%be%97%e5%88%b0%e7%9a%84%e5%bd%93%e5%89%8d%e6%97%b6%e9%97%b4%e5%92%8c%e8%bd%ac%e6%8d%a2-%e8%af%a6%e8%a7%a3.zhangqi</link>
		<comments>http://zhangqi.name/2010/12/c%e5%85%b3%e4%ba%8edatetime%e5%be%97%e5%88%b0%e7%9a%84%e5%bd%93%e5%89%8d%e6%97%b6%e9%97%b4%e5%92%8c%e8%bd%ac%e6%8d%a2-%e8%af%a6%e8%a7%a3.zhangqi#comments</comments>
		<pubDate>Sun, 26 Dec 2010 12:30:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[程序]]></category>

		<guid isPermaLink="false">http://zhangqi.name/2010/12/c%e5%85%b3%e4%ba%8edatetime%e5%be%97%e5%88%b0%e7%9a%84%e5%bd%93%e5%89%8d%e6%97%b6%e9%97%b4%e5%92%8c%e8%bd%ac%e6%8d%a2-%e8%af%a6%e8%a7%a3.zhangqi</guid>
		<description><![CDATA[DateTime.Now.ToShortTimeString() DateTime dt = DateTime.Now; dt.ToString();//2005-11-5 13:21:25 dt.ToFileTime().ToString();//127756416859912816 dt.ToFileTimeUtc().ToString();//127756704859912816 dt.ToLocalTime().ToString();//2005-11-5 21:21:25 dt.ToLongDateString().ToString();//2005年11月5日 dt.ToLongTimeString().ToString();//13:21:25 dt.ToOADate().ToString();//38661.5565508218 dt.ToShortDateString().ToString();//2005-11-5 dt.ToShortTimeString().ToString();//13:21 dt.ToUniversalTime().ToString();//2005-11-5 5:21:25 dt.Year.ToString();//2005 dt.Date.ToString();//2005-11-5 0:00:00 dt.DayOfWeek.ToString();//Saturday &#160; dt.DayOfYear.ToString();//309 dt.Hour.ToString();//13 dt.Millisecond.ToString();//441 dt.Minute.ToString();//30 dt.Month.ToString();//11 dt.Second.ToString();//28 dt.Ticks.ToString();//632667942284412864 dt.TimeOfDay.ToString();//13:30:28.4412864 dt.ToString();//2005-11-5 13:47:04 dt.AddYears(1).ToString();//2006-11-5 13:47:04 dt.AddDays(1.1).ToString();//2005-11-6 16:11:04 dt.AddHours(1.1).ToString();//2005-11-5 14:53:04 dt.AddMilliseconds(1.1).ToString();//2005-11-5 13:47:04 dt.AddMonths(1).ToString();//2005-12-5 13:47:04 dt.AddSeconds(1.1).ToString();//2005-11-5 13:47:05 dt.AddMinutes(1.1).ToString();//2005-11-5 13:48:10 dt.AddTicks(1000).ToString();//2005-11-5 13:47:04 dt.CompareTo(dt).ToString();//0 dt.Add(?).ToString();//问号为一个时间段 dt.Equals(&#34;2005-11-6 16:11:04&#34;).ToString();//False dt.Equals(dt).ToString();//True dt.GetHashCode().ToString();//1474088234 [...]]]></description>
			<content:encoded><![CDATA[<p>DateTime.Now.ToShortTimeString()   <br />DateTime dt = DateTime.Now;    <br />dt.ToString();//2005-11-5 13:21:25    <br />dt.ToFileTime().ToString();//127756416859912816    <br />dt.ToFileTimeUtc().ToString();//127756704859912816    <br />dt.ToLocalTime().ToString();//2005-11-5 21:21:25    <br />dt.ToLongDateString().ToString();//2005年11月5日    <br />dt.ToLongTimeString().ToString();//13:21:25    <br />dt.ToOADate().ToString();//38661.5565508218    <br />dt.ToShortDateString().ToString();//2005-11-5    <br />dt.ToShortTimeString().ToString();//13:21    <br />dt.ToUniversalTime().ToString();//2005-11-5 5:21:25    <br />dt.Year.ToString();//2005    <br />dt.Date.ToString();//2005-11-5 0:00:00    <br />dt.DayOfWeek.ToString();//Saturday</p>
<p>&#160;</p>
<p>  <span id="more-1063"></span>
<p>dt.DayOfYear.ToString();//309    <br />dt.Hour.ToString();//13    <br />dt.Millisecond.ToString();//441    <br />dt.Minute.ToString();//30    <br />dt.Month.ToString();//11    <br />dt.Second.ToString();//28    <br />dt.Ticks.ToString();//632667942284412864    <br />dt.TimeOfDay.ToString();//13:30:28.4412864    <br />dt.ToString();//2005-11-5 13:47:04    <br />dt.AddYears(1).ToString();//2006-11-5 13:47:04    <br />dt.AddDays(1.1).ToString();//2005-11-6 16:11:04    <br />dt.AddHours(1.1).ToString();//2005-11-5 14:53:04    <br />dt.AddMilliseconds(1.1).ToString();//2005-11-5 13:47:04    <br />dt.AddMonths(1).ToString();//2005-12-5 13:47:04    <br />dt.AddSeconds(1.1).ToString();//2005-11-5 13:47:05    <br />dt.AddMinutes(1.1).ToString();//2005-11-5 13:48:10    <br />dt.AddTicks(1000).ToString();//2005-11-5 13:47:04    <br />dt.CompareTo(dt).ToString();//0    <br />dt.Add(?).ToString();//问号为一个时间段    <br />dt.Equals(&quot;2005-11-6 16:11:04&quot;).ToString();//False    <br />dt.Equals(dt).ToString();//True    <br />dt.GetHashCode().ToString();//1474088234    <br />dt.GetType().ToString();//System.DateTime    <br />dt.GetTypeCode().ToString();//DateTime    <br />dt.GetDateTimeFormats(&#8216;s&#8217;)[0].ToString();//2005-11-05T14:06:25    <br />dt.GetDateTimeFormats(&#8216;t&#8217;)[0].ToString();//14:06    <br />dt.GetDateTimeFormats(&#8216;y&#8217;)[0].ToString();//2005年11月    <br />dt.GetDateTimeFormats(&#8216;D&#8217;)[0].ToString();//2005年11月5日    <br />dt.GetDateTimeFormats(&#8216;D&#8217;)[1].ToString();//2005 11 05    <br />dt.GetDateTimeFormats(&#8216;D&#8217;)[2].ToString();//星期六 2005 11 05    <br />dt.GetDateTimeFormats(&#8216;D&#8217;)[3].ToString();//星期六 2005年11月5日    <br />dt.GetDateTimeFormats(&#8216;M&#8217;)[0].ToString();//11月5日    <br />dt.GetDateTimeFormats(&#8216;f&#8217;)[0].ToString();//2005年11月5日 14:06    <br />dt.GetDateTimeFormats(&#8216;g&#8217;)[0].ToString();//2005-11-5 14:06    <br />dt.GetDateTimeFormats(&#8216;r&#8217;)[0].ToString();//Sat, 05 Nov 2005 14:06:25 GMT    <br />string.Format(&quot;{0:d}&quot;,dt);//2005-11-5    <br />string.Format(&quot;{0:D}&quot;,dt);//2005年11月5日    <br />string.Format(&quot;{0:f}&quot;,dt);//2005年11月5日 14:23    <br />string.Format(&quot;{0:F}&quot;,dt);//2005年11月5日 14:23:23    <br />string.Format(&quot;{0:g}&quot;,dt);//2005-11-5 14:23    <br />string.Format(&quot;{0:G}&quot;,dt);//2005-11-5 14:23:23    <br />string.Format(&quot;{0:M}&quot;,dt);//11月5日    <br />string.Format(&quot;{0:R}&quot;,dt);//Sat, 05 Nov 2005 14:23:23 GMT    <br />string.Format(&quot;{0:s}&quot;,dt);//2005-11-05T14:23:23    <br />string.Format(&quot;{0:t}&quot;,dt);//14:23    <br />string.Format(&quot;{0:T}&quot;,dt);//14:23:23    <br />string.Format(&quot;{0:u}&quot;,dt);//2005-11-05 14:23:23Z    <br />string.Format(&quot;{0:U}&quot;,dt);//2005年11月5日 6:23:23    <br />string.Format(&quot;{0:Y}&quot;,dt);//2005年11月    <br />string.Format(&quot;{0}&quot;,dt);//2005-11-5 14:23:23    <br />string.Format(&quot;{0:yyyyMMddHHmmssffff}&quot;,dt);    <br />计算2个日期之间的天数差    <br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;    <br />DateTime dt1 = Convert.DateTime(&quot;2007-8-1&quot;);&#160;&#160; <br />DateTime dt2 = Convert.DateTime(&quot;2007-8-15&quot;);    <br />TimeSpan span = dt2.Subtract(dt1);&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />int dayDiff = span.Days + 1;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />计算某年某月的天数    <br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;&#160;&#160; <br />int days = DateTime.DaysInMonth(2007, 8);&#160;&#160;&#160;&#160;&#160; <br />days = 31;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br />给日期增加一天、减少一天    <br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;    <br />DateTime dt =DateTime.Now;    <br />dt.AddDays(1); //增加一天    <br />dt.AddDays(-1);//减少一天    <br />其它年份方法类似&#8230;    <br />Oracle SQL里转换日期函数    <br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;    <br />to_date(&quot;2007-6-6&quot;,&#8217;YYYY-MM-DD&quot;);    <br />to_date(&quot;2007/6/6&quot;,&#8217;yyyy/mm/dd&quot;);    <br />如下一组数据,如何查找表里包含9月份的记录:    <br />CGGC_STRATDATE CGGC_ENDDATE    <br />=========================================    <br />2007-8-4 2007-9-5    <br />2007-9-5 2007-9-20    <br />2007-9-22 2007-10-5    <br />SELECT * FROM TABLE    <br />(TO_DATE(&#8217;2007/9/1&#8242;,&#8217;yyyy/mm/dd&#8217;) BETWEEN CGGC_STRATDATE    <br />AND CGGC_ENDDATE OR CGGC_STRATDATE &gt;=TO_DATE(&#8217;2007/9/1&#8242;,&#8217;yyyy/mm/dd&#8217;)    <br />AND CGGC_ENDDATE&lt;=TO_DATE(&#8217;2007/9/30&#8242;,&#8217;yyyy/mm/dd&#8217;) &quot;    <br />OR TO_DATE(&#8217;2007/9/30&#8242;,&#8217;yyyy/mm/dd&#8217;) BETWEEN CGGC_STRATDATE    <br />AND CGGC_ENDDATE) ORDER BY CGGC_STRATDATE ASC</p>
<p>如：</p>
<p>#region 生成时间字符串   <br />&#160;&#160;&#160; /// &lt;summary&gt;    <br />&#160;&#160;&#160; /// 生成时间字符串    <br />&#160;&#160;&#160; /// &lt;/summary&gt;    <br />&#160;&#160;&#160; /// &lt;returns&gt;时间字符串“20:00”格式&lt;/returns&gt;    <br />&#160;&#160;&#160; public string DateTimeSrc()    <br />&#160;&#160;&#160; {    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; string time;    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; time = DateTime.Now.Hour.ToString();    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; time += &quot;:&quot; + DateTime.Now.Minute.ToString();    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; time += &quot;:&quot; + DateTime.Now.Second.ToString();    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; return Convert.ToString(time);    <br />&#160;&#160;&#160; }</p>
Here is no comments yet by the time  your rss reader get this, Do you want to be the first commentor? Hurry up ]]></content:encoded>
			<wfw:commentRss>http://zhangqi.name/2010/12/c%e5%85%b3%e4%ba%8edatetime%e5%be%97%e5%88%b0%e7%9a%84%e5%bd%93%e5%89%8d%e6%97%b6%e9%97%b4%e5%92%8c%e8%bd%ac%e6%8d%a2-%e8%af%a6%e8%a7%a3.zhangqi/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>工业级大哥大</title>
		<link>http://zhangqi.name/2010/12/%e5%b7%a5%e4%b8%9a%e7%ba%a7%e5%a4%a7%e5%93%a5%e5%a4%a7.zhangqi</link>
		<comments>http://zhangqi.name/2010/12/%e5%b7%a5%e4%b8%9a%e7%ba%a7%e5%a4%a7%e5%93%a5%e5%a4%a7.zhangqi#comments</comments>
		<pubDate>Sun, 26 Dec 2010 11:29:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[程序]]></category>

		<guid isPermaLink="false">http://zhangqi.name/2010/12/%e5%b7%a5%e4%b8%9a%e7%ba%a7%e5%a4%a7%e5%93%a5%e5%a4%a7.zhangqi</guid>
		<description><![CDATA[公司项目中使用的工业级3G智能终端 带了几乎所有能带的功能，非常强大的机器。1.2米防摔，防水。。。。。就是不防盗。 Here is no comments yet by the time your rss reader get this, Do you want to be the first commentor? Hurry up]]></description>
			<content:encoded><![CDATA[<p>公司项目中使用的工业级3G智能终端</p>
<p>带了几乎所有能带的功能，非常强大的机器。1.2米防摔，防水。。。。。就是不防盗。</p>
<p><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0821.jpg"><img class="colorbox-1062"  style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0821" border="0" alt="IMG_0821" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0821_thumb.jpg" width="604" height="454" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0822.jpg"><img class="colorbox-1062"  style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0822" border="0" alt="IMG_0822" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0822_thumb.jpg" width="604" height="454" /></a></p>
Here is no comments yet by the time  your rss reader get this, Do you want to be the first commentor? Hurry up ]]></content:encoded>
			<wfw:commentRss>http://zhangqi.name/2010/12/%e5%b7%a5%e4%b8%9a%e7%ba%a7%e5%a4%a7%e5%93%a5%e5%a4%a7.zhangqi/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2010年第一场雪</title>
		<link>http://zhangqi.name/2010/12/2010%e5%b9%b4%e7%ac%ac%e4%b8%80%e5%9c%ba%e9%9b%aa.zhangqi</link>
		<comments>http://zhangqi.name/2010/12/2010%e5%b9%b4%e7%ac%ac%e4%b8%80%e5%9c%ba%e9%9b%aa.zhangqi#comments</comments>
		<pubDate>Wed, 15 Dec 2010 14:00:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[日记]]></category>

		<guid isPermaLink="false">http://zhangqi.name/2010/12/2010%e5%b9%b4%e7%ac%ac%e4%b8%80%e5%9c%ba%e9%9b%aa.zhangqi</guid>
		<description><![CDATA[今天绍兴下了今年第一场雪，估计也是今年最后一场雪 气温也逼近到了0°，小Q第一次显示*符号。 比往年来得都要早 下了一天，躲在办公室里没发现下那么大 傍晚回家接LD回家 Here is no comments yet by the time your rss reader get this, Do you want to be the first commentor? Hurry up]]></description>
			<content:encoded><![CDATA[<p>今天绍兴下了今年第一场雪，估计也是今年最后一场雪</p>
<p>气温也逼近到了0°，小Q第一次显示*符号。</p>
<p>比往年来得都要早</p>
<p>下了一天，躲在办公室里没发现下那么大</p>
<p>傍晚回家接LD回家</p>
<p><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0560.jpg"><img class="colorbox-1033"  style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0560" border="0" alt="IMG_0560" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0560_thumb.jpg" width="604" height="342" /></a></p>
<p><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0520.jpg"><img class="colorbox-1033"  style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0520" border="0" alt="IMG_0520" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0520_thumb.jpg" width="604" height="454" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0531.jpg"><img class="colorbox-1033"  style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0531" border="0" alt="IMG_0531" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0531_thumb.jpg" width="604" height="454" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0538.jpg"><img class="colorbox-1033"  style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0538" border="0" alt="IMG_0538" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0538_thumb.jpg" width="604" height="454" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0540.jpg"><img class="colorbox-1033"  style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0540" border="0" alt="IMG_0540" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0540_thumb.jpg" width="604" height="454" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0542.jpg"><img class="colorbox-1033"  style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0542" border="0" alt="IMG_0542" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0542_thumb.jpg" width="604" height="454" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0563.jpg"><img class="colorbox-1033"  style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0563" border="0" alt="IMG_0563" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0563_thumb.jpg" width="604" height="454" /></a></p>
Here is no comments yet by the time  your rss reader get this, Do you want to be the first commentor? Hurry up ]]></content:encoded>
			<wfw:commentRss>http://zhangqi.name/2010/12/2010%e5%b9%b4%e7%ac%ac%e4%b8%80%e5%9c%ba%e9%9b%aa.zhangqi/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>入手VX-8GR</title>
		<link>http://zhangqi.name/2010/12/%e5%85%a5%e6%89%8bvx-8gr.zhangqi</link>
		<comments>http://zhangqi.name/2010/12/%e5%85%a5%e6%89%8bvx-8gr.zhangqi#comments</comments>
		<pubDate>Wed, 15 Dec 2010 13:49:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HAM]]></category>
		<category><![CDATA[8GR]]></category>

		<guid isPermaLink="false">http://zhangqi.name/2010/12/%e5%85%a5%e6%89%8bvx-8gr.zhangqi</guid>
		<description><![CDATA[一直想玩APRS，和BG5DAL商量，忽悠他一起入了8GR 在BD7PA博客上研究了半天关于8GR和8DR，最后觉得8GR更适合自己 这样，从6R、7R到现在的8R，这三大R，哥已经齐活了 突然被占有了以后，感觉没啥追求了 By the time your rss reader get this post here is 3 comments ,Welcome you come to leave your opinion !]]></description>
			<content:encoded><![CDATA[<p>一直想玩APRS，和BG5DAL商量，忽悠他一起入了8GR</p>
<p>在BD7PA博客上研究了半天关于8GR和8DR，最后觉得8GR更适合自己</p>
<p>这样，从6R、7R到现在的8R，这三大R，哥已经齐活了</p>
<p>突然被占有了以后，感觉没啥追求了</p>
<p><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0500.jpg"><img class="colorbox-1018"  style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0500" border="0" alt="IMG_0500" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0500_thumb.jpg" width="244" height="184" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0501.jpg"><img class="colorbox-1018"  style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0501" border="0" alt="IMG_0501" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0501_thumb.jpg" width="244" height="184" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0502.jpg"><img class="colorbox-1018"  style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0502" border="0" alt="IMG_0502" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0502_thumb.jpg" width="244" height="184" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0503.jpg"><img class="colorbox-1018"  style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0503" border="0" alt="IMG_0503" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0503_thumb.jpg" width="244" height="184" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0504.jpg"><img class="colorbox-1018"  style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0504" border="0" alt="IMG_0504" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0504_thumb.jpg" width="244" height="184" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0505.jpg"><img class="colorbox-1018"  style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0505" border="0" alt="IMG_0505" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0505_thumb.jpg" width="244" height="184" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0506.jpg"><img class="colorbox-1018"  style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0506" border="0" alt="IMG_0506" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0506_thumb.jpg" width="244" height="184" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0507.jpg"><img class="colorbox-1018"  style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0507" border="0" alt="IMG_0507" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0507_thumb.jpg" width="244" height="184" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0508.jpg"><img class="colorbox-1018"  style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0508" border="0" alt="IMG_0508" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0508_thumb.jpg" width="244" height="184" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0509.jpg"><img class="colorbox-1018"  style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0509" border="0" alt="IMG_0509" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0509_thumb.jpg" width="244" height="184" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0510.jpg"><img class="colorbox-1018"  style="background-image: none; border-bottom: 0px; border-left: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0510" border="0" alt="IMG_0510" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0510_thumb.jpg" width="244" height="184" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0511.jpg"><img class="colorbox-1018"  style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0511" border="0" alt="IMG_0511" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0511_thumb.jpg" width="244" height="184" /></a></p>
By the time  your rss reader get this post here is <strong> 3 </strong>comments ,Welcome you come to leave your opinion !]]></content:encoded>
			<wfw:commentRss>http://zhangqi.name/2010/12/%e5%85%a5%e6%89%8bvx-8gr.zhangqi/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>嵊州行</title>
		<link>http://zhangqi.name/2010/12/%e5%b5%8a%e5%b7%9e%e8%a1%8c.zhangqi</link>
		<comments>http://zhangqi.name/2010/12/%e5%b5%8a%e5%b7%9e%e8%a1%8c.zhangqi#comments</comments>
		<pubDate>Wed, 15 Dec 2010 13:20:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[日记]]></category>

		<guid isPermaLink="false">http://zhangqi.name/2010/12/%e5%b5%8a%e5%b7%9e%e8%a1%8c.zhangqi</guid>
		<description><![CDATA[上周末和媳妇去了一趟嵊州 此行的目的只有一个，“还愿” 媳妇当年在那里许下心愿，如今愿望实现了 Here is no comments yet by the time your rss reader get this, Do you want to be the first commentor? Hurry up]]></description>
			<content:encoded><![CDATA[<p>上周末和媳妇去了一趟嵊州</p>
<p>此行的目的只有一个，“还愿”</p>
<p>媳妇当年在那里许下心愿，如今愿望实现了</p>
<p><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0443.jpg"><img class="colorbox-992"  style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0443" border="0" alt="IMG_0443" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0443_thumb.jpg" width="604" height="454" /></a></p>
<p><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0421.jpg"><img class="colorbox-992"  style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0421" border="0" alt="IMG_0421" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0421_thumb.jpg" width="604" height="454" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0422.jpg"><img class="colorbox-992"  style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0422" border="0" alt="IMG_0422" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0422_thumb.jpg" width="454" height="604" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0427.jpg"><img class="colorbox-992"  style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0427" border="0" alt="IMG_0427" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0427_thumb.jpg" width="604" height="454" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0432.jpg"><img class="colorbox-992"  style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0432" border="0" alt="IMG_0432" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0432_thumb.jpg" width="604" height="454" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0445.jpg"><img class="colorbox-992"  style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0445" border="0" alt="IMG_0445" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0445_thumb.jpg" width="604" height="454" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0453.jpg"><img class="colorbox-992"  style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0453" border="0" alt="IMG_0453" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0453_thumb.jpg" width="604" height="454" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0465.jpg"><img class="colorbox-992"  style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0465" border="0" alt="IMG_0465" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0465_thumb.jpg" width="604" height="454" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0478.jpg"><img class="colorbox-992"  style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0478" border="0" alt="IMG_0478" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0478_thumb.jpg" width="604" height="454" /></a></p>
Here is no comments yet by the time  your rss reader get this, Do you want to be the first commentor? Hurry up ]]></content:encoded>
			<wfw:commentRss>http://zhangqi.name/2010/12/%e5%b5%8a%e5%b7%9e%e8%a1%8c.zhangqi/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>感冒 出差</title>
		<link>http://zhangqi.name/2010/12/%e6%84%9f%e5%86%92-%e5%87%ba%e5%b7%ae.zhangqi</link>
		<comments>http://zhangqi.name/2010/12/%e6%84%9f%e5%86%92-%e5%87%ba%e5%b7%ae.zhangqi#comments</comments>
		<pubDate>Wed, 15 Dec 2010 12:58:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[日记]]></category>
		<category><![CDATA[出差]]></category>
		<category><![CDATA[感冒]]></category>

		<guid isPermaLink="false">http://zhangqi.name/2010/12/%e6%84%9f%e5%86%92-%e5%87%ba%e5%b7%ae.zhangqi</guid>
		<description><![CDATA[真不争气，感冒了 快2年没感冒了，这个记录总算被自己打破了 起因是因为N就没讲课了，第一次讲课太“鸡动”鸟 出差新昌，住的酒店是市运会住过的酒店，住的楼层也是 无意中的巧合。。。。自助餐比市运会的好多了 Here is no comments yet by the time your rss reader get this, Do you want to be the first commentor? Hurry up]]></description>
			<content:encoded><![CDATA[<p>真不争气，感冒了</p>
<p>快2年没感冒了，这个记录总算被自己打破了</p>
<p>起因是因为N就没讲课了，第一次讲课太“鸡动”鸟</p>
<p>出差新昌，住的酒店是市运会住过的酒店，住的楼层也是</p>
<p>无意中的巧合。。。。自助餐比市运会的好多了</p>
<p><a href="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0512.jpg"><img class="colorbox-973"  style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0512" border="0" alt="IMG_0512" src="http://zhangqi.name/wp-content/uploads/2010/12/IMG_0512_thumb.jpg" width="654" height="492" /></a></p>
Here is no comments yet by the time  your rss reader get this, Do you want to be the first commentor? Hurry up ]]></content:encoded>
			<wfw:commentRss>http://zhangqi.name/2010/12/%e6%84%9f%e5%86%92-%e5%87%ba%e5%b7%ae.zhangqi/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>S95腕带</title>
		<link>http://zhangqi.name/2010/11/s95%e8%85%95%e5%b8%a6.zhangqi</link>
		<comments>http://zhangqi.name/2010/11/s95%e8%85%95%e5%b8%a6.zhangqi#comments</comments>
		<pubDate>Sun, 28 Nov 2010 14:37:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[摄影]]></category>
		<category><![CDATA[日记]]></category>

		<guid isPermaLink="false">http://zhangqi.name/2010/11/s95%e8%85%95%e5%b8%a6.zhangqi</guid>
		<description><![CDATA[购买S95时随即附送的一张活动券 注册了以后，XX天后，收到了 带上后的感觉是，比较硬 By the time your rss reader get this post here is 1 comments ,Welcome you come to leave your opinion !]]></description>
			<content:encoded><![CDATA[<p>购买S95时随即附送的一张活动券</p>
<p>注册了以后，XX天后，收到了</p>
<p>带上后的感觉是，比较硬</p>
<p><a href="http://zhangqi.name/wp-content/uploads/2010/11/IMG_0295.jpg"><img class="colorbox-970"  style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0295" border="0" alt="IMG_0295" src="http://zhangqi.name/wp-content/uploads/2010/11/IMG_0295_thumb.jpg" width="604" height="454" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/11/IMG_0296.jpg"><img class="colorbox-970"  style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0296" border="0" alt="IMG_0296" src="http://zhangqi.name/wp-content/uploads/2010/11/IMG_0296_thumb.jpg" width="604" height="454" /></a><a href="http://zhangqi.name/wp-content/uploads/2010/11/IMG_0297.jpg"><img class="colorbox-970"  style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="IMG_0297" border="0" alt="IMG_0297" src="http://zhangqi.name/wp-content/uploads/2010/11/IMG_0297_thumb.jpg" width="604" height="454" /></a></p>
By the time  your rss reader get this post here is <strong> 1 </strong>comments ,Welcome you come to leave your opinion !]]></content:encoded>
			<wfw:commentRss>http://zhangqi.name/2010/11/s95%e8%85%95%e5%b8%a6.zhangqi/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

