我有一个需要阅读的文本文件,每一行都是一个 IP、一个 URL,最后是一个日期,所有这些都由空格分隔。我想将每条信息分配给我的类对象“访问者”的适当变量。我有一个数组来存储它们。我的问题是当我尝试浏览文本文件时,这些行......我一直在所有文本之间出现空格。
class Visitors{
public:
string IP;
string URL;
string dateAccessed;
};
int main(){
Visitors hits[N];
string filename, theLine;
ifstream infile;
cout << "Enter file name (with extension):" << flush;
while(true){
string infilename;
getline(cin, infilename);
infile.open(infilename.c_str());
if(infile) break;
cout << "Invalid file. Please enter valid file name: " << flush;
}
cout << "\n";
while(!infile.eof()){
getline(infile, theLine);
istringstream iss(theLine);
do{
string ip;
string url;
string date;
iss >> ip;
iss >> url;
iss >> date;
if(ip != "\n"){
cout << "The IP: " << ip << endl;
}
if(url != "\n"){
cout << "The URL: " << url << endl;
}
if(date != "\n"){
cout << "The DA: " << date << endl;
}
}while(iss);
}
return 0;
}
我尝试使用 if 语句来获取所有只是“换行符”的字符串并忽略它们,但这不起作用,所以我不完全确定如何忽略它们。我还想添加检查以查看是否有任何信息错误(日期不是 2/2/4 个字符长,URL 中缺少 www. 等)
这是一些示例输出,以更好地展示我的问题...
Enter file name (with extension):hits.txt
The IP: 192.168.1.101
The URL: www.cs.stonybrook.edu
The DA: 01/01/2013
The IP:
The URL:
The DA:
The IP: 192.168.1.101
The URL: www.cs.stonybrook.edu
The DA: 01/01/2013
The IP:
The URL:
The DA:
The IP: 123.112.15.151
The URL: www.cs.stonybrook.edu
The DA: 01/01/2013
编辑:好的,所以我已经弄清楚如何遍历每一行,将其分解并相应地将字符串添加到它在对象数组中的类变量中所属的位置。现在的问题是我想检查每行的每个字符串是否有错误(例如,日期是不可能的,或者 IP 中的数字之一是 256 等)。发现该错误后,我想跳到下一行,进行相同的检查,如果一切正常,它将在数组中的适当位置初始化类变量。这是我的代码,可让您了解我要做什么...
#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
#define N 50
using namespace std;
class Visitors{
public:
string IP;
string URL;
string dateAccessed;
};
int main(){
Visitors hits[N];
string infilename, filename, ip, url, date;
ifstream infile;
int i = 0;
cout << "Enter file name (with extension):" << flush;
while(true){
infilename = "";
getline(cin, infilename);
infile.open(infilename.c_str());
if(infile) break;
cout << "Invalid file. Please enter valid file name: " << flush;
}
cout << "Loading " << infilename << "..." << endl;;
cout << "\n";
while(infile.good()){
string line;
getline(infile, line);
stringstream ss(line);
if(ss >> ip >> url >> date){
cout << "The IP: " << ip << endl;
hits[i].IP = ip;
cout << "The URL: " << url << endl;
hits[i].URL = url;
cout << "The DA: " << date << endl;
hits[i].dateAccessed = date;
i++;
}
else{
cerr << "error" << std::endl;
}
/*
if(ip.length() > 15 || ip.length() < 7){
cout << "Found a record with an invalid IP format (not XXX.XXX.XXX.XXX)...ignoring entry";
}
//if(any of the numbers in the IP address are great then 255)
//INVALID IP...IGNORE ENTRY
else{
cout << "The IP: " << ip << endl;
hits[i].IP = ip;
}
//if(url doesnt start with www. or doesnt end with .xxx)
//INVALID URL...IGNORE ENTRY
else{
cout << "The URL: " << url << endl;
hits[i].URL = url;
}
//if(date.length != 10)
//INVALID DATE FORMAT...IGNORE ENTRY
//if(first 2 numbers in date arent between 01 and 12
//OR if second 2 numbers arent between 01 and 31 depending on month OR etc.)
//INVALID....IGNORE ENTRY
else{
cout << "The DA: " << date << endl;
hits[i].dateAccessed = date;
}
i++;*/
}
return 0;
}
它显然没有组织或组合起来,但它是我想要完成的总体思路。我最大的问题是如何跳过文件中的一行而不影响我在数组中的位置,或者如果所有行都有错误,它会捕获每一行。