C\#이 루어 진 바 이 너 리 읽 기와 쓰기 파일 작업 예제

본 고의 실례 는 C\#에서 실 현 된 바 이 너 리 읽 기와 쓰기 파일 조작 을 설명 한다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다.

using System;
using System.IO;
class MyStream 
{
  private const string FILE_NAME = "Test.data";
  public static void Main(String[] args) 
  {
    // Create the new, empty data file.
    if (File.Exists(FILE_NAME)) 
    {
      Console.WriteLine("{0} already exists!", FILE_NAME);
      return;
    }
    FileStream fs = new FileStream(FILE_NAME, FileMode.CreateNew);
    // Create the writer for data.
    BinaryWriter w = new BinaryWriter(fs);
    // Write data to Test.data.
    for (int i = 0; i < 11; i++) 
    {
      w.Write( (int) i);
    }
    w.Close();
    fs.Close();
    // Create the reader for data.
    fs = new FileStream(FILE_NAME, FileMode.Open, FileAccess.Read);
    BinaryReader r = new BinaryReader(fs);
    // Read data from Test.data.
    for (int i = 0; i < 11; i++) 
    {
      Console.WriteLine(r.ReadInt32());
    }
    w.Close();
  }
}

더 많은 C\#관련 내용 에 관심 이 있 는 독 자 는 본 사이트 의 주 제 를 볼 수 있다.,,,,,C\#파일 작업 상용 기술 집합,C\#알고리즘 과 기술 총화,C\#프로 그래 밍 스 레 드 사용 기술 총화,C\#일반적인 컨트롤 사용법 강좌,WinForm 컨트롤 사용법 요약C\#데이터 구조 와 알고리즘 튜 토리 얼
본 고 에서 말 한 것 이 여러분 의 C\#프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기