3

我一直在努力让我的 C++ 程序从 Xcode 读取我的 .txt 文件。我什至尝试将 .txt 文件放在我的 Xcode C++ 程序的同一目录中,但它不会成功读取。我正在尝试用文件中的所有核苷酸填充 dnaData 数组,所以我只需读取一次,然后我就可以对该数组进行操作。下面只是我处理文件的代码的一部分。整个程序的想法是编写一个程序,该程序读取包含 DNA 序列的输入文件(dna.txt),以各种方式分析输入,并输出包含各种结果的多个文件。输入文件中核苷酸的最大数量(见表 1)将为 50,000。请问有什么建议吗?

#include <fstream>
#include <cstdlib>
#include <iostream>
#include <string>
#include <sstream>
using namespace std;

const int MAX_DNA = 50000;

// Global DNA array. Once read from a file, it is
// stored here for any subsequent function to use
char dnaData[MAX_DNA];

int readFromDNAFile(string fileName)
{
int returnValue = 0;

ifstream inStream;
inStream.open(fileName.c_str());

    if (inStream.fail())
    {
        cout << "Input file opening failed.\n";
        exit(1);
    }

    if (inStream.good())
    {
        char nucleotide;
        int counter = 0;
        while ( inStream >> nucleotide )
        {
            dnaData[counter] = nucleotide;
            counter++;
        }
        returnValue = counter;
    }

    inStream.close();
    return returnValue;
    cout << "Read file completed" << endl;

} // end of readFromDNAfile function
4

3 回答 3

4

我怀疑这里的问题不在于 C++ 代码,而在于文件位置。在 Xcode 中,二进制程序构建在 Executables 位置。您必须设置构建阶段以将输入文件复制到可执行文件位置。请参阅此Apple 文档

于 2013-04-10T02:13:24.897 回答
0

我做了一些你最近尝试做的事情,vector就像这样:

vector<string> v;
// Open the file
ifstream myfile("file.txt");
if(myfile.is_open()){
    string name;
    // Whilst there are lines left in the file
    while(getline(myfile, name)){
        // Add the name to the vector
        v.push_back(name);
    }
}

上面读取存储在文件每一行的名称并将它们添加到向量的末尾。因此,如果我的文件是 5 个名称,则会发生以下情况:

// Start of file
Name1    // Becomes added to index 0 in the vector
Name2    // Becomes added to index 1 in the vector
Name3    // Becomes added to index 2 in the vector
Name4    // Becomes added to index 3 in the vector
Name5    // Becomes added to index 4 in the vector
// End of file

试试看,看看它是如何为你工作的。

即使你不采用上面显示的方式,我仍然建议使用std::vector,因为向量通常更容易使用,在这种情况下没有理由不使用。

于 2013-04-09T16:17:18.560 回答
0

如果每一行包含一个字符,那么这意味着您还将结束行字符 ('\n') 读入 DNA 阵列。在这种情况下,您可以这样做:

while ( inStream >> nucleotide )
{
        if(nucleotide  == '\n')
        {
              continue;
        }
        dnaData[counter] = nucleotide;
        counter++;
}
于 2013-04-09T16:24:50.667 回答