私は 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 フォーム アプリケーションの正しいテキスト ボックスに出力する必要があります。これを正しく行う方法がわかりません。ストリームリーダーを使用する必要がありますか? または、この場合、別のより良い方法はありますか? ありがとうございました。