我一直试图做的是......
1)通过命令行参数
读取txt文件2)使用txt文件中的字符串作为main方法的参数(或者你需要调用的任何方法)。
例如,有两个txt文件,其中一个名为character.txt,另一个名为character.txt。
文件的内容就是这样。
character.txt
//This comprises of six rows. Each of the rows has two string values
Goku Saiyan
Gohan Half_Saiyan
Kuririn Human
Piccolo Namekian
Frieza villain
Cell villain
match.txt
//This comprises of three rows, each of them is one string value
Goku Piccolo
Gohan Cell
Kuririn Frieza
如果我在不使用命令行的情况下使用这些字符串,我会像这样在character.txt中声明字符串。
typedef string name; //e.g. Goku
typedef string type; //e.g. Saiyan, Human, etc
现在我正在寻找如何从上面的txt文件中读取和发送字符串值,并将它们用于main方法中的函数,理想情况就是这样。
int main(int argc, char *argv)
{
for (int i = 1; i < argc; i++) {
String name = *argv[i]; //e.g. Goku
String type = *argv[i]; //e.g. Saiyan, Human, etc
String match = * argv[i]; //Goku Piccolo
//I don't think any of the statements above would be correct.
//I'm just searching for how to use string values of txt files in such a way
cout << i << " " << endl; //I'd like to show names, types or matchs inside the double quotation mark.
}
}
理想情况下,我想以这种方式调用此方法。
According to this web site.,至少我知道可以在C ++中使用命令行参数,但我找不到更多信息。如果您对此提出任何建议,我将不胜感激。
PS。我正在使用Windows和代码块。
答案 0 :(得分:2)
假设您只想阅读文件的内容并进行处理,您可以从这个代码开始(没有任何错误检查)。它只是从命令行获取文件名,并将文件内容读入2个向量。然后你可以根据需要处理这些向量。
#include <string>
#include <fstream>
#include <iostream>
#include <vector>
std::vector<std::string> readFileToVector(const std::string& filename)
{
std::ifstream source;
source.open(filename);
std::vector<std::string> lines;
std::string line;
while (std::getline(source, line))
{
lines.push_back(line);
}
return lines;
}
void displayVector(const std::vector<std::string&> v)
{
for (int i(0); i != v.size(); ++i)
std::cout << "\n" << v[i];
}
int main(int argc, char **argv)
{
std::string charactersFilename(argv[1]);
std::string matchesFilename(argv[2]);
std::vector<std::string> characters = readFileToVector(charactersFilename);
std::vector<std::string> matches = readFileToVector(matchesFilename);
displayVector(characters);
displayVector(matches);
}
答案 1 :(得分:1)
首先主要功能原型应该是
int main(int argc, char **argv)
OR
int main(int argc, char *argv[])
在main函数中检索文件名后,您应该打开每个文件并检索其内容
第三个示例代码
int main(int argc, char* argv[])
{
for(int i=1; i <= argc; i++) // i=1, assuming files arguments are right after the executable
{
string fn = argv[i]; //filename
cout << fn;
fstream f;
f.open(fn);
//your logic here
f.close();
}
return 0;
}