Contents

Views 29524 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
텍스트 한줄 읽기
char buffer[125], *ps;
CString strName, strNum;
CString readfilename = pDlg.GetPathName();
m_readfile = readfilename;

FILE *stream = fopen(m_readfile, "rt");
if (stream == NULL) return;

while (fgets(buffer, 125, stream) != NULL) // 텍스트파일을 한줄씩 읽습니다. 
{
    ps = strchr(buffer, '\n'); // 제일 뒤쪽의 new line의 char을 찿아.
    if (ps != NULL) *ps = '\0';// new line의 char을 null문자로 바꿉니다. 

    int cn = 0;
    ps = strtok(buffer, ",");
    while (ps) {
        if (cn == 0) strName.Format("%s", ps);
        else strNum.Format("%s", ps);
        ps = strtok(NULL, ",");
        cn++;
    }
    TRACE("%s\r\n",buffer);
}

바이너리 파일 읽기
FILE *rfp,*wfp;
int c;

if((rfp = fopen(rpath,"rb"))==NULL)
    return;

if((wfp = fopen(wpath,"ab"))==NULL)
{
    fclose(rfp);
    return;
}

while(1)
{
    c = fgetc(rfp);
    if(!feof(rfp))
    {
        int a = ftell(wfp);
        fputc(c,wfp);
    }
    else
        reak;
}
fclose(rfp);
fclose(wfp);

MFC 파일 한줄씩 읽기
CStdioFile file(fileName, CFile::modeRead | CFile::typeText);

while(1)
{
    if ( !file.ReadString(str) )
        break;
}
file.Close();
return true;


?

List of Articles
No. Category Subject Author Date Views
157 Develop [c] 재미있는 코딩.. file hooni 2003.04.23 23278
156 Develop [iphone] 화면 전환 Portrait & Landscape Mode hooni 2013.04.23 23399
155 System/OS 컴파일러 수업 자료(교재 : 컴파일러 입문) file hooni 2003.04.23 23441
154 Develop [ios] UIView에서 상위 UIViewController 가져오기 hooni 2013.09.27 23461
153 System/OS [mac] 맥(OSX)에서 root 패스워드 설정하기 hooni 2013.04.23 23592
152 Etc 영어공부에 도움될만한 사이트 모음 hooni 2013.05.14 23717
151 Develop [ios] UIColor 지정에서 RGB define ㅎㅎ hooni 2013.04.23 23819
150 Develop [ios] UILabel top alignㅎㅎ hooni 2013.04.23 23853
149 Etc 양성/음성 오류에 대한 개념 hooni 2013.04.23 23865
148 Develop [js] 자바스크립트(Javascript) 코드를 동적으로 삽입하는 방법.. file hooni 2013.04.23 24078
147 Develop 밸런싱 로봇.. 최종.. (관련 논문도 첨부) ㅋㅋ file hooni 2013.04.23 24159
146 PPT [ppt] 뚜레쥬르 온라인 마케팅 제안서 file hooni 2013.04.23 24457
Board Pagination Prev 1 ... 81 82 83 84 85 86 87 88 89 90 ... 99 Next
/ 99