我从前端客户端发送一个文件,在服务器端我有这样的东西:
void staticmethods::exportTableViewToCSV(QTableView *table) {
QString filters("CSV files (*.csv);;All files (*.*)");
QString defaultFilter("CSV files (*.csv)");
QString fileName = QFileDialog::getSaveFileName(0, "Save file", QCoreApplication::applicationDirPath(),
filters, &defaultFilter);
QFile file(fileName);
QAbstractItemModel *model = table->model();
if (file.open(QFile::WriteOnly | QFile::Truncate)) {
QTextStream data(&file);
QStringList strList;
for (int i = 0; i < model->columnCount(); i++) {
if (model->headerData(i, Qt::Horizontal, Qt::DisplayRole).toString().length() > 0)
strList.append("\"" + model->headerData(i, Qt::Horizontal, Qt::DisplayRole).toString() + "\"");
else
strList.append("");
}
data << strList.join(";") << "\n";
for (int i = 0; i < model->rowCount(); i++) {
strList.clear();
for (int j = 0; j < model->columnCount(); j++) {
if (model->data(model->index(i, j)).toString().length() > 0)
strList.append("\"" + model->data(model->index(i, j)).toString() + "\"");
else
strList.append("");
}
data << strList.join(";") + "\n";
}
file.close();
}
}
我需要的是创建文件可能是基于那个缓冲区,我该怎么办?
我已经搜索了很多,并没有找到任何解决方案。
这是我到目前为止所尝试的:
{ name: 'CV-FILIPECOSTA.pdf',
data: <Buffer 25 50 44 46 2d 31 2e 35 0d 25 e2 e3 cf d3 0d 0a 31 20 30 20 6f 62 6a 0d 3c 3c 2f 4d 65 74 61 64 61 74 61 20 32 20 30 20 52 2f 4f 43 50 72 6f 70 65 72 ... >,
encoding: '7bit',
mimetype: 'application/pdf',
mv: [Function: mv] }
答案 0 :(得分:3)
您可以使用NodeJS
提供的Buffer:
let buf = Buffer.from('this is a test');
// buf equals <Buffer 74 68 69 73 20 69 73 20 61 20 74 65 73 74>
let str = Buffer.from(buf).toString();
// Gives back "this is a test"
Encoding也可以在重载的from
方法中指定。
const buf2 = Buffer.from('7468697320697320612074c3a97374', 'hex');
// This tells that the first argument is encoded as a hexadecimal string
let str = buf2.toString();
// Gives back the readable english string
// which resolves to "this is a tést"
以可读格式提供数据后,您可以使用NodeJS中的fs模块存储它。
fs.writeFile('myFile.txt', "the contents of the file", (err) => {
if(!err) console.log('Data written');
});
因此,在将缓冲的输入转换为字符串后,您需要将字符串传递给writeFile
方法。您可以查看fs
模块的文档。它将帮助您更好地理解事物。