web-dev-qa-db-ja.com

WindowsフォームでOpenFileDialogを使用してテキストファイルを読み取る

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

24
xavi

1つの方法を次に示します。

Stream myStream = null;
OpenFileDialog theDialog = new OpenFileDialog();
theDialog.Title = "Open Text File";
theDialog.Filter = "TXT files|*.txt";
theDialog.InitialDirectory = @"C:\";
if (theDialog.ShowDialog() == DialogResult.OK)
{
    try
    {
        if ((myStream = theDialog.OpenFile()) != null)
        {
            using (myStream)
            {
                // Insert code to read the stream here.
            }
        }
    }
    catch (Exception ex)
    {
        MessageBox.Show("Error: Could not read file from disk. Original error: " + ex.Message);
    }
}

ここから変更: MSDN OpenFileDialog.OpenFile

[〜#〜] edit [〜#〜]ニーズに適した別の方法を次に示します。

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)
    {
        string filename = theDialog.FileName;

        string[] filelines = File.ReadAllLines(filename);

        List<Employee> employeeList = new List<Employee>();
        int linesPerEmployee = 4;
        int currEmployeeLine = 0;
        //parse line by line into instance of employee class
        Employee employee = new Employee();
        for (int a = 0; a < filelines.Length; a++)
        {

            //check if to move to next employee
            if (a != 0 && a % linesPerEmployee == 0)
            {
                employeeList.Add(employee);
                employee = new Employee();
                currEmployeeLine = 1;
            }

            else
            {
                currEmployeeLine++;
            }
            switch (currEmployeeLine)
            {
                case 1:
                    employee.EmployeeNum = Convert.ToInt32(filelines[a].Trim());
                    break;
                case 2:
                    employee.Name = filelines[a].Trim();
                    break;
                case 3:
                    employee.Address = filelines[a].Trim();
                    break;
                case 4:
                    string[] splitLines = filelines[a].Split(' ');

                    employee.Wage = Convert.ToDouble(splitLines[0].Trim());
                    employee.Hours = Convert.ToDouble(splitLines[1].Trim());
                    break;


            }

        }
        //Test to see if it works
        foreach (Employee emp in employeeList)
        {
            MessageBox.Show(emp.EmployeeNum + Environment.NewLine +
                emp.Name + Environment.NewLine +
                emp.Address + Environment.NewLine +
                emp.Wage + Environment.NewLine +
                emp.Hours + Environment.NewLine);
        }
    }
}
35
jordanhill123

このアプローチでは、c#ファイルの上部近くにある他の参照(****。**を使用する場所)の下に次のコード行を追加して、system.IOを参照に追加する必要があります。

using System.IO;

この次のコードには、テキストを読み取る2つのメソッドが含まれます。1つ目は単一行を読み取って文字列変数に格納し、2つ目はテキスト全体を読み取って文字列変数に保存します(「\ n」(入力)

どちらも理解しやすく使いやすいものでなければなりません。


    string pathToFile = "";//to save the location of the selected object
    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());
            pathToFile = theDialog.FileName;//doesn't need .tostring because .filename returns a string// saves the location of the selected object

        }

        if (File.Exists(pathToFile))// only executes if the file at pathtofile exists//you need to add the using System.IO reference at the top of te code to use this
        {
            //method1
            string firstLine = File.ReadAllLines(pathToFile).Skip(0).Take(1).First();//selects first line of the file
            string secondLine = File.ReadAllLines(pathToFile).Skip(1).Take(1).First();

            //method2
            string text = "";
            using(StreamReader sr =new StreamReader(pathToFile))
            {
                text = sr.ReadToEnd();//all text wil be saved in text enters are also saved
            }
        }
    }

テキストを分割するには、.Split( "")を使用し、ループを使用して名前を1つの文字列に戻すことができます。 .Split()を使用したくない場合は、foreachとadを使用してifステートメントを必要に応じて分割することもできます。


クラスにデータを追加するには、コンストラクタを使用して次のようなデータを追加できます。

  public Employee(int EMPLOYEENUM, string NAME, string ADRESS, double WAGE, double HOURS)
        {
            EmployeeNum = EMPLOYEENUM;
            Name = NAME;
            Address = ADRESS;
            Wage = WAGE;
            Hours = HOURS;
        }

または、インスタンスの名前の後に.variablenameと入力して、セットを使用して追加できます(それらがパブリックであり、セットがある場合、これは機能します)。データを読み取るには、インスタンスの名前の後に.variablenameを入力してgetを使用できます(パブリックで、getがある場合、これは機能します)。

3
TeD van Loon