bool Contains(String str);判断字符串对象是否包含给定的字符串;
bool StartsWith(String str);判断字符串对象是否以给定的字符串开始;
bool EndWith(String str);判断字符串是否以给定的字符串开始;
int IndexOf(char ch);返回指定字符在此字符串中第一次出现的索引
int IndexOf(String str);返回指定字符串在此字符串中第一次出现的索引
LastIndexOf:最后一次出现的位置
String Substring(int start);截取字符串。返回从指定位置开始截取后的字符串
string Substring(int start,int length) 截取字符串。返回从指定位置开始截取指定长度length的字符串
String ToLower(); 把字符串变成小写
String ToUpper(); 把字符串变成大写
String Replace(char oldChar,char newChar); 用新的字符去替换指定的旧字符
String Replace(String oldStr,String newStr); 用新的字符串去替换旧的字符串
String Trim(); 去除字符串两端的空格
String TrimStart(); 去除字符串开头的空格
String TrimEnd(); 去除字符串结尾的空格、
String Trim(params char[] trimChars); 去掉两端给定的字符
注意:String是不可变的,因此上面的操作都是生成新的字符串对象,要用返回值去取新的字符串
String[] Split(...):重载方法很多,字符串按照分隔符切割。案例:把字符串用","分割
案例:给一个全班数学考试成绩的字符串“50, 80,33,58,99, 82”,成绩用逗号分隔,有的成绩中可能有空格,有的地方逗号是英文、有的逗号是中文。统计班级的平均分。
//计算写在字符串的成绩的平均分 string score ="46,74 ,72,56,45 ,62"; string[] newScore = score.Replace(" ","").Replace(',',',').Split(','); int sum =0; for(int i =0; i < newScore.Length; i++) { sum +=Convert.ToInt32(newScore[i]); } Console.WriteLine(sum*1.0/newScore.Length);
bool IsNullOrEmpty(string value); 判断字符串是否为null或者是空字符串;
bool Equals(string a,string b,StringComparison.OrdinalIgnoreCase);不区分大小写比较。案例验证码
string Join(string separator,params string[] value); 把一个数组(集合)用分隔符separator连接为一个字符串
DateTime.Now当前时间;
DateTime.Today当前日期;
可以通过Year、Month、Hour 等属性得到日期的年、月、日、小时等部分;也可以用构造函数根据给定的时间创建一个对象
异常的给类为Exception。异常类一般都基础字Exception
异常的捕捉
try { string s =null;//s没有指向任何对象 s.ToLower();//调用s所指向的对象的ToLower方法 } catch(NullReferenceException e) { Console.WriteLine("null引用错误:"+e.Message); }
try { //可能有问题的代码 } catch(异常类型异常变量) { //处理方式 } finally { //无论“有问题的代码”是否出错都要执行的代码 }
把可能发生异常的代码段放到try块中
catch捕获代码段中的NullReferenceException异常
如果捕捉到了,e就代表异常对象
一旦try里面有问题了,放弃执行try代码块中的代码,直接跳到catch里面执行。
finally语句块里面的代码无论是否有异常都会执行
不知道怎么处理就不要catch,出错比“把错误藏起爱”好。这样以为“不会出错了”,其实是把异常“吃掉了”,会让程序陷入逻辑混乱状态,要科学合理的处理异常
void Delete(string path);删除指定文件
bool Exists(string path);判断指定文件是否存在
string[] ReadAllLines(string path);将指定的文本文件中的内容读取到string数组中
string ReadAllText(string path):将文本文件读取为一个字符串
void WriteAllLines(string path, string[] contents):将一个string[]数组写入到指定文件中;
void WriteAllText(string path, string contents):将字符串contents写入到指定文本文件path中。
AppendAllText:向文件中附加内容;
Copy复制文件;
Move移动文件
void Delete(string path, bool recursive):删除文件夹指定path, recursive表示是否也删除子文件及子文件夹。如果文件夹不为空, recursive=false,则抛异常;
bool Exists(string path):判断指定文件夹是否存在
EnumerateFiles、 EnumerateDirectories遍历文件和文件夹;
本地的照片是怎么样上传到QQ空间服务器的呢?播放器是怎么读取硬盘上的视频文件到播放器里面的,然后显示的呢?我们编写的word文档是怎保存到硬盘中的?这些都 涉及到IO(Input/Output)操作。
.Net将IO操作(文件、网络等)简化成流模型Stream,是抽象类,网络、文件、加密等都是不同的子类,最常用胡子类是FileSteam、MemoryStream等
使用Stream的时候虽然可以:FileStream fs = new FileStream(...),但是Stream fs = new FileInputStream(...);更好,在使用的变量类型提供的操作能满足的前提下,尽可能用父类、接口声明变量;
public class MyFileStream:IDisposable { public void Dispose() { Console.WriteLine("Dispose了"); } }
using(MyFileStream f1 =newMyFileStream()) { }
using (MyFile f1 =newMyFile()) using (MyFile f2 =newMyFile()) { }
using (FileStream fs = new FileStream(@"D:\temp\1.txt", FileMode.Open)) { byte[] bytes = new byte[4]; //fs.Read(bytes, 0, bytes.Length);//每次读取4个字节,下次Read的时候再读取最多4个byte //返回值为真正读取的字节数 int len; /* len = fs.Read(bytes, 0, bytes.Length); Console.WriteLine(len); len = fs.Read(bytes, 0, bytes.Length); Console.WriteLine(len); len = fs.Read(bytes, 0, bytes.Length); Console.WriteLine(len); */ //判断是否已经读到了最后 while ((len = fs.Read(bytes, 0, bytes.Length)) > 0) { //Console.WriteLine(len); //把byte数组转化为字符串 //string s = Encoding.Default.GetString(bytes); string s = Encoding.Default.GetString(bytes, 0, len); Console.WriteLine(s); } }
示例代码:
using (Stream inStream = new FileStream(@"d:\temp\C#.pdf", FileMode.Open)) using(Stream outStream = new FileStream(@"d:\temp\CSharp.pdf",FileMode.Create)) { byte[] bytes = new byte[1024*1024]; //缓冲区大小:过小:降低速度;过大:占用内存 int len; //读取并且返回读取长度给len,然后判断len读取的长度的值是否大于0 while ((len = inStream.Read(bytes, 0, bytes.Length)) > 0) { //将byte[]数组写入outStream中,0代表从这个数组的第几位开始写入,len代表写入多长 //每次write都会从上次write的最后位置接着写入, outStream.Write(bytes, 0, len);//类似于GetString } }
(2)StreamReader、StreamWriter是用来读写字符流(character stream)的类,会帮着自动处理麻烦的问题。
using (Stream outStream = new FileStream(@"d:\temp\1.txt", FileMode.Create)) using(StreamWriter sw = new StreamWriter(outStream,Encoding.Default)) { sw.Write("你好a如鹏网"); sw.WriteLine("hehe"); sw.WriteLine("1111"); }
1、数组长度是固定的,List<T>可以动态增删内容。List<T>是泛型的,可以在声明的时候指定放什么类型的数据。
List<int> list = new List<int>(); list.Add(1); list.Add(2); list.AddRange(new int[] { 1, 2, 3, 4, 5, 6 }); list.AddRange(list);//另一个list
2、如何遍历?
for (int i = 0; i < list1.Count; i++) { int num = list1[i]; Console.WriteLine(num); }
int[] nums = list.ToArray(); //List泛型集合可以转换为数组 List<string> listStr = new List<string>(); string[] str = listStr.ToArray();
int[] nums = { 33, 55, 66 }; for (int i = 0; i < nums.Length; i++) { Console.WriteLine(nums[i]); }