C++ 프로그래밍 파일 입력에 관한 질문

freesky의 이미지

수업 과제 때문에 C++ 프로그래밍을 하고 있습니다.

파일로 입력을 받아들여 파일로 출력하는 과제인데요.

질문 들어갑니다.

1) 자료가 저장된 파일을 읽기용으로 읽어들일 때 파일 오류 처리 방법을 알려주세요. C에서는 'FILE *' 포인터가 NULL인지 확인하면 되는데 C++에서는 잘 모르겠네요. 제가 가진 책이 워낙 부실해서...

2) 파일을 읽어들일 때 빈줄을 무시하는 방법을 알려주세요.

chadr의 이미지

ifstream으로 읽어들이신다면 is_open함수를 이용하시면 될겁니다.

그리고 파일내용을 어떻게 처리하시는지 모르겠지만.. 토큰단위로 처리를 하신다면

char sztmp[256];
ifstream ifs;

while (!ifs.eof())
{
  ifs >> sztmp;
}

이렇게 하시면 빈칸 빈줄 탭과 같은 문자들은 무시가 되어서 읽힙니다.

-------------------------------------------------------------------------------
It's better to appear stupid and ask question than to be silent and remain stupid.

냐옹이의 이미지

rdstate()
good()
eof()
fail()
bad()

위 함수를 쓰면 되지 않을까요?

------------------------
냐옹~~

doldori의 이미지

chadr wrote:
char sztmp[256];
ifstream ifs;

while (!ifs.eof())
{
  ifs >> sztmp;
}

잘못된 방법입니다. 그 이유는
Why does my input seem to process past the end of file?

위의 코드는 다음과 같이 되어야 합니다.

while (ifs >> sztmp)
{
    // do something
}

eof(), fail(), bad() 같은 함수는 쓸 일이 거의 없더군요.
freesky의 이미지

제가 Borland C++ v3.1을 쓰는데요.. (예전 판이기는 하지만..)

is_open() 메쏘드는 없다고 나오는데요...

이렇게 난감할 때가...

올해에는 꼭 노트북이 생기게 해 주세요.

doldori의 이미지

그렇다면 이렇게 해도 됩니다.

ifstream ifs("myFile");
if (!ifs)
{
    // handle error
}
ssehoony의 이미지

http://cplusplus.com

저도 iostream 에 대해서는 약한 편이라 iostream 을 사용하다가 막히면 주로 위 사이트에서 참고 합니다.
보기 쉽게 잘 나와있어요.
예제도 같이 있고

freesky의 이미지

감사합니다.

올해에는 꼭 노트북이 생기게 해 주세요.

zedoul의 이미지

int main()
{
ifstream ifs;
ifs.open("C:\\test.txt", ifstream::in);
while (ifs.good())
cout << (char) ifs.get();
return 0;
}

-----------------------------------------
that which doesn`t kill us make us strong

-----------------------------------------
that which doesn`t kill us make us strong

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.