摘要: 看到网上好多判断文件类型的文章,所以就想自己动手实现,本文是根据文件流的头两个字节来判断,检测大概是什么图像。View Code 1 /// <summary> 2 /// 判断文件类型 3 /// </summary> 4 /// <param name="filePath">文件路径</param> 5 /// <param name="fileType">文件类型</param> 6 /// <returns>真或假</returns> 7 privat 阅读全文
posted @ 2012-10-05 23:20 小凡(loveok_56) 阅读(1940) 评论(6) 推荐(0) 编辑
摘要: View Code 1 static void Main(string[] args)2 {3 string str = "2012年10月05日";4 string[] strs = str.Split(new char[] {'年','月','日'});5 Console.WriteLine(string.Join(" ",strs));6 Console.ReadKey();7 8 //This code example displays... 阅读全文
posted @ 2012-10-05 15:32 小凡(loveok_56) 阅读(186) 评论(0) 推荐(0) 编辑
摘要: View Code 1 static void Main(string[] args) 2 { 3 //去掉两端的空格和指定的元素 4 string str = " 11178978978978979878978971111 "; 5 string delim = " 1"; 6 str=str.Trim(delim.ToCharArray()); 7 Console.WriteLine(str); 8 Consol... 阅读全文
posted @ 2012-10-05 15:20 小凡(loveok_56) 阅读(381) 评论(0) 推荐(0) 编辑