如何使用setName / getName方法的成员nomeFile来设置saveFile方法的输出文件名。 QString nomeFile在file.h中是私有的 我创建的文件返回以下错误
QFSFileEngine :: open:未指定文件名
dialog.cpp
nomeFile="abcd"; // private: QString nomeFile; in dialog.h
file ogg1;
ogg1.setName(nomeFile);
f.cpp
file ogg2;
ogg2.saveFile();
file.cpp
/* COSTRUTTORE */
a::a()
{
}
/* DISTRUTTORE */
a::~a()
{
}
void a::setName(QString _nomeFile)
{
nomeFile="C:\\Users\\MDN\\Documents\\A\\" + _nomeFile + ".txt";
if(!nomeFile.isEmpty())
{
QFile::remove(nomeFile);
}
}
QString a::getName()
{
return nomeFile;
}
void a::saveFile()
{
QFile file(nomeFile);
if (file.open(QIODevice::Append | QIODevice::WriteOnly | QIODevice::Text)
{
QTextStream stream(&file);
stream << "File salvato correttamente";
stream << ".....";
stream << ".....";
}
}
答案 0 :(得分:1)
尝试使用它:
setName("filename.txt");
然后在saveFile方法中添加如下参数:a::saveFile(QString _nomefile)
,然后在调用方法时a::saveFile(getName())
答案 1 :(得分:1)
有些猜测如下:
你有一些对话框:http://
class MyDialog : QDialog
{
public:
MyDialog(QObject * parent = 0, file& ogg1) : QDialog(parent), m_ogg1(ogg1) {}
// other public stuff here
private:
QString nomeFile;
file& m_ogg1;
// other private stuff here
}
您在两个文件中使用了两个单独的对象,为了解决这个问题,您应该使用一个对象并引用它。
e.g。
void MyDialog::someMethod()
{
nomeFile="abcd";
m_ogg1.setName(nomeFile);
}
dialog.cpp
file ogg1;
MyDialog * dialog(this, ogg1);
dialog->exec();
ogg1->saveFile();
f.cpp
{{1}}