如何在c ++中读取.dat文件

时间:2013-03-20 15:53:45

标签: c++ sql-server

如何用C ++编写代码读取.dat文件,这些文件包含文本数据(用分隔符组织的数字和字符|)。是fstream标准库的最佳选择?我们如何定义文件路径。第二个问题是,如果我想读取这些文件并将它们加载到SQL服务器数据库中,它会有不同的机制吗?

2 个答案:

答案 0 :(得分:2)

是的,您可以使用fstream。

以下是您可以使用的一些代码 用于将数据拆分为由分隔符分隔的数组。只是改变了 DELIMITER到您的分隔符。

#include <iostream>
using std::cout;
using std::endl;

#include <fstream>
using std::ifstream;

#include <cstring>

const int MAX_CHARS_PER_LINE = 512;
const int MAX_TOKENS_PER_LINE = 20;
const char* const DELIMITER = " ";

int main()
{
  // create a file-reading object
  ifstream fin;
  fin.open("data.txt"); // open a file
  if (!fin.good()) 
    return 1; // exit if file not found

  // read each line of the file
  while (!fin.eof())
  {
    // read an entire line into memory
    char buf[MAX_CHARS_PER_LINE];
    fin.getline(buf, MAX_CHARS_PER_LINE);

    // parse the line into blank-delimited tokens
    int n = 0; // a for-loop index

    // array to store memory addresses of the tokens in buf
    const char* token[MAX_TOKENS_PER_LINE] = {}; // initialize to 0

    // parse the line
    token[0] = strtok(buf, DELIMITER); // first token
    if (token[0]) // zero if line is blank
    {
      for (n = 1; n < MAX_TOKENS_PER_LINE; n++)
      {
    token[n] = strtok(0, DELIMITER); // subsequent tokens
        if (!token[n]) break; // no more tokens
  }
}

    // process (print) the tokens
    for (int i = 0; i < n; i++) // n = #of tokens
      cout << "Token[" << i << "] = " << token[i] << endl;
    cout << endl;
  }
}

要将数据存储到数据库中,请查看MySql

答案 1 :(得分:0)

好吧,你可以自己谷歌..但是:做一些教程。 例如:http://www.cplusplus.com/doc/tutorial/files/ 而不是.txt你只需打开.dat(因为你说它只包含文本数据..)

用于存储在SQL数据库中,我假设它现在是MySQL: http://www.nitecon.com/tutorials-articles/develop/cpp/c-mysql-beginner-tutorial/

对于以下步骤:打开文件,打开数据库连接,执行INSERT INTO .... 完成。