Read line and store info?
-
Hello, so I'm fiddling around with qfile and looked at some tutorials, but I can't see how I can read the file line by line to for example
store line 1 in username
and line 2 as password.Currently doing this:
QTextStream out(&file);
out << username << endl;
out << password << endl;It outputs the details in the format:
test
testI want to now store test in username and the other test in password, not sure if getline is what im looking for.
-
I tried doing something like
QString line[2] = out.readLine();
ui->lineusername->text() = line[0];
ui->linepassword->text() = line[1];an array cannot be initialized with a parenthesized initializer
-
@davethedave
In addition to what @VRonin has shown, if yourlineusername
/linepassword
are, say,QLineEdit
s, you cannot assign viatext() = ...
as you tried in yours, you'll want to usesetText()
. [EDIT As @VRonin 's example now shows.]