Qt에서 파일 생성하고 쓰는 방법 좀 알려주세요..

leo~~~~의 이미지

파일에 있는 데이터 읽어 오는건 알겠는데..

파일을 생성해서 쓰는 방법을 모르겠네요....

C언어 에서는 fprintf 쓰믄 되잖아요...

Qt에서는 어떻게 해야하죠??

rhizome의 이미지

leo~~~~ wrote:
파일에 있는 데이터 읽어 오는건 알겠는데..

파일을 생성해서 쓰는 방법을 모르겠네요....

C언어 에서는 fprintf 쓰믄 되잖아요...

Qt에서는 어떻게 해야하죠??

우선 C++ 표준 라이브러리를 쓰셔도 되겠구요. -- http://www.cplusplus.com/ref/iostream/ofstream/

Qt 4의 경우라면 아래 예제 코드처럼 QFile과 QTextStream을 이용하면 되는데 아마 Qt 3에도 대응되는 클래스가 있지 않을까 싶네요.

#include <QFile>
QFile file("out.txt");
if (!file.open(QIODevice::WriteOnly | QIODevice::Text))
            return;

QTextStream out(&file);
out << "The magic number is: " << 49 << "\n";

자세한 사항은 http://doc.trolltech.com/4.0/qfile.html 에 있습니다.

거짓말이 없다는 것은 현대성보다도 사상보다도
백배나 더 중요한 일이다.

rhizome의 이미지

Qt 3에 QFile 클래스가 있네요. 아래 예제와 같이 쓰시면 될 것 같습니다. Qt 4와 특별히 차이가 있어 보이지 않네요

1) QFile 형의 객체(file)를 만들고 연(file.open) 다음
2) QTextStream 형 객체(stream)를 생성할 때 file의 포인터를 넘겨주고
3) iostream 라이브러리를 사용할 때처럼 이 객체 stream에 쓰면 되는군요.

QFile file( "file.txt" );
if ( file.open( IO_WriteOnly ) ) {
      QTextStream stream( &file );
      for ( QStringList::Iterator it = lines.begin(); it != lines.end(); ++it )
          stream << *it << "\n";
        file.close();
    }

자세한 사항은 http://doc.trolltech.com/3.3/qfile.html를 참조하시면 됩니다.

거짓말이 없다는 것은 현대성보다도 사상보다도
백배나 더 중요한 일이다.

익명 사용자의 이미지

제 버전은 2라서 그 부분은 없는데요

QStringList는 있네요~~

감사합니다~~

되는지 해봐야겠네요~ㅋ

leo~~~~의 이미지

제가 하려는게요...

프로그램 실행할때 인자값을 입력하면

그 이력한 값을 파일에 쓰려고 하는건데요.....

익명 사용자의 이미지

leo~~~~ wrote:
제가 하려는게요...

프로그램 실행할때 인자값을 입력하면

그 이력한 값을 파일에 쓰려고 하는건데요.....

이 코드로 한 번 해 보시죠. Qt 2 깔려 있는 곳에서 실험해 봤습니다.

#include <qfile.h>
#include <qtextstream.h>
int main (int argc, char **argv)
{
  QFile file ("file.txt");
  if(!file.open (IO_WriteOnly)) return 1;
  QTextStream os (&file);
  for (int i = 1; i < argc; ++i)
    os << argv[i] << '\n';
  return 0;
}

그리고 http://doc.trolltech.com/에 가보면 각 버젼 별로 Reference manual이 있습니다. 상당히 잘 되어 있으니 도움이 되실겁니다.

rhizome의 이미지

바로 위 답변 rhizome이 쓴 겁니다. :) 로그인을 안 하고 써버렸네요.

그리고 한 가지 더, reference manual을 자주 찾아보는 습관을 들이시기를... :wink:

거짓말이 없다는 것은 현대성보다도 사상보다도
백배나 더 중요한 일이다.

댓글 달기

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