파일에서 데이터 읽어와서 메모리에 저장하기

장종철의 이미지

텍스트 파일 2개를 읽어와서 메모리에 저장해야 되는데요..
하나의 텍스트 파일은 라인의 첨부터 개행되는 부분까지만 읽어서
값을 첫 번째 메모리에 저장하고서 담 행을 읽어서 두번째 메모리에 저장하려고 합니다.
---txt 파일----
01---> 이 라인만 읽어서 메모리에 저장하기
02---> 다시 이 라인만 읽어서 두번째 메모리에 저장하기
03--> 다시 이 라인만 일거엇 세번쩨 메모리에 저장하기

그리고 다른 하나의 텍스트 파일은 파일의 첨 부터 읽어서 EOF가 나올때까지 읽어서 메모리에 저장하려고 합니다.
이 경우 스트림으로 읽어온 내용을 저장할 메모리 변수를 어떻게 정해줘야 하죠?

참고로 윈도루 컴파일 하고 있습니다.(감사합니다.)

doldori의 이미지

C++입니다.

#include <fstream>
#include <vector>
#include <string>
#include <iterator>

using namespace std;

int main()
{
    // store each line into a vector of string
    ifstream fin1("file1");
    vector<string> data1;
    string line;
    while (getline(fin1, line))
        data1.push_back(line);

    // store whole contents of a file into a string
    ifstream fin2("file2");
    string data2((istreambuf_iterator<char>(fin2)),
                  istreambuf_iterator<char>());
}
장종철의 이미지

C++이 아닌 C로 해결할 방법이 없을까요?

두번째 텍스트 파이은 해결을 했는데..

첫번째 텍스트 파일은 해결이 안 되네요..

한 라인씩 메모리에 저장...

doldori의 이미지

#include <stdio.h>
#include <stdlib.h>

#define MAXSIZE 80

typedef char Line[MAXSIZE];

int main(void)
{
    FILE* fp = fopen("file", "r");
    int i, c, nline = 0;
    while ((c = getc(fp)) != EOF)
        if (c == '\n') ++nline;

    rewind(fp);

    Line* lines = malloc(sizeof(*lines) * nline);
    for (i = 0; i < nline; ++i)
        fgets(lines[i], MAXSIZE, fp);
    fclose(fp);

    // use lines

    free(lines);
    return 0;
}

한 라인의 길이가 MAXSIZE보다 클 때의 에러 처리나 라인의 길이에 따라 각각
malloc 하는 등의 변형도 생각해 볼 수 있겠습니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.