1

「Java for Dummies」を読み終えたところで、簡単な POS プログラムの作成を開始しました。プログラムにやりたいことをさせるのに苦労しています! 「Amigos」と「Fosters」の各ボタンにリンクされた 2 つの actionListeners があります。また、2 つのテキスト フィールドがあります。1 つは個々の飲み物の価格を示し、もう 1 つは小計に使用されます。同じ飲み物の倍数を合計するための小計がありましたが、「フォスター」を含む「アミーゴ」はありませんでした。これは、小計変数を共有しようとすることによってプログラムされました。私はアマチュア Java プログラミングを 1 つのテキスト ファイルに読み書きすることで回避しようとしましたが、それは私にとっても難しいことがわかりました。以下は、読み取りと書き込みの回避策を実装しようとしている私のコードです。

これは私の初めての Java プログラムですので、形式、句読点、および Java の慣習が間違っていることをお許しください。また、コメント不足をお許しください。どんなアドバイスでも大歓迎です!

よろしく

ルイ

import javax.swing.JFrame;
import javax.swing.JTextField;
import javax.swing.JButton;
import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import java.text.NumberFormat;
import java.io.FileNotFoundException;

class till_v2 {

    public static void main(String args[]) {

        JFrame frame;
        Container content_pane;
        JTextField textField, subTotal;
        JButton b1Amigos, b2Fosters;
        FlowLayout layout;

        frame = new JFrame();
        frame.setTitle("Louis' Till");

        content_pane = frame.getContentPane();

        textField = new JTextField("Price displayed here.",15);
        subTotal = new JTextField("Sub-Total.", 5);

        b1Amigos = new JButton("Amigos");
        b1Amigos.addActionListener(new AmigosAL(textField));
        b1Amigos.addActionListener(new subTotalAmigosUD(subTotal));

        b2Fosters = new JButton("Fosters");
        b2Fosters.addActionListener(new FostersAL(textField));
        b2Fosters.addActionListener(new subTotalFostersUD(subTotal));

        content_pane.add(textField);
        content_pane.add(subTotal);
        content_pane.add(b1Amigos);
        content_pane.add(b2Fosters);
        layout = new FlowLayout();
        content_pane.setLayout(layout);

        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.pack();
        frame.setVisible(true);

    }
}

class subTotalFostersUD implements ActionListener {

    JTextField subTotal;
    int itemPrice;
    double sub_total;
    SUBTOTAL SUBTOTALobject = new SUBTOTAL();

    subTotalFostersUD(JTextField subTotal) {
        this.subTotal = subTotal;
    }
    //The problem could be here!
    public void actionPerformed(ActionEvent e) {
        try {
            itemPrice = 320;
            sub_total = SUBTOTALobject.SUBTOTAL(itemPrice);
            subTotal.setText("£"+sub_total);
        }

        catch (FileNotFoundException err) {
            System.out.println("1!");
        }
    }
}

class subTotalAmigosUD implements ActionListener {

    JTextField subTotal;
    int itemPrice;
    double sub_total;
    SUBTOTAL SUBTOTALobject = new SUBTOTAL();

    subTotalAmigosUD(JTextField subTotal) {
        this.subTotal = subTotal;
    }
    //Same problem as above!
    public void actionPerformed(ActionEvent e) {
        try {
            itemPrice = 330;
            sub_total = SUBTOTALobject.SUBTOTAL(itemPrice);
            subTotal.setText("£"+sub_total);
        }

        catch (FileNotFoundException err) {
            System.out.println("2!");
        }
    }
}

class AmigosAL implements ActionListener {

    JTextField textField;

    AmigosAL(JTextField textField) {
        this.textField = textField;
    }

    public void actionPerformed(ActionEvent e) {
        textField.setText("£3.30");
    }
}


class FostersAL implements ActionListener {

    JTextField textField;

    FostersAL(JTextField textField) {
        this.textField = textField;
    }

    public void actionPerformed(ActionEvent e) {
        textField.setText("£3.20");
    }
}

import java.io.File;
import java.io.FileNotFoundException;
import java.io.PrintStream;
import java.io.*;

//The problem could be here!
public class SUBTOTAL {
    BufferedReader in;
    BufferedWriter out;
    int pennies;
    int itemPrice;
    public double sub_total;        

    public double SUBTOTAL(int itemPrice) throws FileNotFoundException {
        try {
            in = new BufferedReader(new FileReader("sub_total.txt"));
            pennies = Integer.parseInt(in.readLine());
            pennies = pennies + itemPrice;
            in.close();
        }

        catch(IOException e) {
            System.out.println("3!");
        }

        try {
            out = new BufferedWriter(new FileWriter("sub_total.txt"));
            out.write(pennies);
            out.close();
        }

        catch(IOException e){
            System.out.println("4!");
        }

        sub_total = pennies;
        sub_total = sub_total / 100;
        return sub_total;   
    }
}
4

2 に答える 2

3

ファイルsub_total.txtがないため、このエラーが発生します

必要な内容でこのファイルを作成します。.classファイルがあるのと同じフォルダにあります。

于 2011-02-20T17:05:55.807 に答える
1

Vivek が言ったように、それはあなたの問題を解決するはずです。

しかし、その後、あなたは得るでしょうNumberFormatException

out.write(pennies);書き込む文字intを指定するデータ型でファイルに書き込みます。

ただし、小計は複数の文字にすることができます(アイテムの数を増やすと、小計が増加します)。

小計が文字を超える場合、テキストファイルにジャンク値sub_total.txt書き込まれます

Integer.parseInt(in.readLine());データを as として読み取り、それをwhichStringに解析しようとしますint

結果はNumberFormatException


ソリューション:

次のようにファイルにデータを書き込みますString

PrintWriter txt = new PrintWriter(out);
txt.print(pennies);
txt.close();

代わりにout.write(pennies); 、データを次のように読み取ります

pennies = Integer.parseInt(in.readLine());


プログラムを実行する前に、整数値を格納することを忘れないでください。sub_total.txt

于 2011-02-20T18:20:25.573 に答える