我需要一些帮助来阅读visual c ++中的文件。从“movie.dat”,我需要阅读:
2015,Star Wars,DVD,120
1987,Star wars,DVD,110
2010,Inception,DVD,100
类似的东西
使用逗号(,
)分隔符添加到字段中:
store.add(year,name,media,length)
在java中,我会这样做:
public static void readFromFile(String filename,Store store){
try {
Scanner ps = new Scanner(new BufferedInputStream(new FileInputStream(filename)));
while(ps.hasNextLine()){
String line = ps.nextLine();
String field[] = line.split(",");
store.add(Integer.parseInt(field[0]),field[1],field[2],Integer.parseInt([3]));
}
ps.close();
} catch(Exception e){
System.out.println(e.getMessage());
}
}
答案 0 :(得分:1)
好吧,我首先要定义一个结构(或类)来保存数据:
struct movie {
int year;
std::string name;
std::string media;
int length;
};
然后我定义一个提取器来读取文件中的一个提取器:
std::istream &operator>>(std::istream &is, movie &m) {
std::string line;
std::getline(is, line);
std::istringstream buffer(line);
char ignore;
buffer >> m.year >> ignore;
std::getline(buffer, m.name, ',');
std::getline(buffer, m.media, ',');
buffer >> m.length;
return is;
}
然后我读了一个文件中的矢量(例如):
std::vector<movie> movies {
std::istream_iterator<movie>(infile),
std::istream_iterator<movie>() };
答案 1 :(得分:0)
您应该使用基本的get set函数编写电影类,并将信息存储在电影类对象的矢量
中void readMovieDataFromFile(vector<movie> &movies) {
fstream inputfile;
std::string line;
inputfile.open("C:\\movie.dat", ios::out | ios::in );
std::string token;
while (std::getline(inputfile, line)) {
std::istringstream iss(line);
while (std::getline(iss, token, ','))
{
movies[i].setYear(atoi(token.c_str()));
std::getline(iss, token, ',');
movies[i].setName(token);
std::getline(iss, token, ',');
movies[i].setMedia(token);
std::getline(iss, token, ',');
movies[i].setLength(atoi(token.c_str()));
}
i++;
}
inputfile.close();
}
答案 2 :(得分:0)
void readMovieDataFromFile() {
fstream inputfile;
std::string line;
inputfile.open("filmy.dat", ios::in);
while (std::getline(inputfile, line)) {
std::istringstream iss(line);
std::string token;
while (std::getline(iss, token, ','))
{
int a = atoi(token.c_str());
std::getline(iss, token, ',');
char *y = new char[token.length() + 1];
std::strcpy(y, token.c_str());
std::getline(iss, token, ',');
char *c = new char[token.length() + 1];
std::strcpy(c, token.c_str());
std::getline(iss, token, ',');
int b = atoi(token.c_str());
store.add(a, y, c, b);
}
}
谢谢所有这些对我有用! :)
答案 3 :(得分:0)
使用像boost :: serialization这样的序列化库。这对于从文件中写入和读取对象非常有效。缺点是它不具有可读性。