Trolltech Home | Qt-interest Home | Recent Threads | All Threads | Author | Date
All threads index page 6

Qt-interest Archive, March 2002
Write QString to a file


Message 1 in thread

This is a simple question I hope. How do I write a QString out to a QFile. I 
cannot find the function for doing this


Message 2 in thread

>This is a simple question I hope. How do I write a QString out to a QFile. I
>cannot find the function for doing this

QString str("string");
QFile f("filename");
QTextOStream out(&f);
out << str;

Something like that.


  - Marius