○ファイル

■ファイル書き込み

//Shift JIS でストリームに書き込む
System.IO.StreamWriter sw =new System.IO.StreamWriter("test.txt",false,System.Text.Encoding.GetEncoding(932));
sw.WriteLine("てすと");
sw.Flush();
sw.Close();


■ファイル読み込み

//Shift JIS でストリームから一行ごとに最後まで読み込む
System.IO.StreamReader sr =new System.IO.StreamReader("test.txt",System.Text.Encoding.GetEncoding(932));
String str;
while(null!=(str=sr.ReadLine()))
{
	System.Diagnostics.Trace.WriteLine(str);
}
sr.Close();


■CSV形式文字列の切り出し

class Class1
{
	static void Main(string[] args)
	{
		String str="aa,bb,cc,dd,ee,ff,gg,hh";
		String []ar=str.Split(',');
		
		for(int i=0;i<ar.Length;i++)
		{
			Console.WriteLine(ar[i]);
		}
		Console.Read();
	}
}

処理結果

aa
bb
cc
dd
ee
ff
gg
hh




▲トップページ > Visual BASIC と C#