我是 OpenFileDialog 函数的新手,但已经弄清楚了基础知识。我需要做的是打开一个文本文件,从文件中读取数据(仅限文本)并将数据正确放置在我的应用程序中的单独文本框中。这是我的“打开文件”事件处理程序中的内容:
private void openToolStripMenuItem_Click(object sender, EventArgs e)
{
OpenFileDialog theDialog = new OpenFileDialog();
theDialog.Title = "Open Text File";
theDialog.Filter = "TXT files|*.txt";
theDialog.InitialDirectory = @"C:\";
if (theDialog.ShowDialog() == DialogResult.OK)
{
MessageBox.Show(theDialog.FileName.ToString());
}
}
我需要阅读的文本文件是这个(对于家庭作业,我需要阅读这个确切的文件),它有一个员工编号、姓名、地址、工资和工作时间:
1
John Merryweather
123 West Main Street
5.00 30
在给我的文本文件中,还有 4 名员工在此之后立即以相同的格式提供信息。您可以看到员工的工资和工时在同一行,而不是拼写错误。
我在这里有一个员工班:
public class Employee
{
//get and set properties for each
public int EmployeeNum { get; set; }
public string Name { get; set; }
public string Address { get; set; }
public double Wage { get; set; }
public double Hours { get; set; }
public void employeeConst() //constructor method
{
EmployeeNum = 0;
Name = "";
Address = "";
Wage = 0.0;
Hours = 0.0;
}
//Method prologue
//calculates employee earnings
//parameters: 2 doubles, hours and wages
//returns: a double, the calculated salary
public static double calcSalary(double h, double w)
{
int OT = 40;
double timeandahalf = 1.5;
double FED = .20;
double STATE = .075;
double OThours = 0;
double OTwage = 0;
double OTpay = 0;
double gross = 0; ;
double net = 0;
double net1 = 0;
double net2 = 0;
if (h > OT)
{
OThours = h - OT;
OTwage = w * timeandahalf;
OTpay = OThours * OTwage;
gross = w * h;
net = gross + OTpay;
}
else
{
net = w * h;
}
net1 = net * FED; //the net after federal taxes
net2 = net * STATE; // the net after state taxes
net = net - (net1 + net2);
return net; //total net
}
}
所以我需要将该文件中的文本提取到我的 Employee 类中,然后将数据输出到 Windows 窗体应用程序中的正确文本框。我无法理解如何正确执行此操作。我需要使用流式阅读器吗?或者在这种情况下还有另一种更好的方法吗?谢谢你。