0

したがって、配列用の次の読み取りおよび書き込みファイルプログラムがあります。ArrayList の場合、次はどのようになりますか? 構文に問題があります。私は ArrayList が次のようになることを知っています: private ArrayList prod list = new ArrayList(); しかし、読み取り/書き込み IO 構文はどのようになりますか? ありがとうございました。

    static ActionProduct[] prodlist = new ActionProduct[50];
    static String filename = System.getProperty("user.dir") + "\\src\\product.txt";
    static int pIndex=0;


public static void readFile() throws IOException {
        // input file must be supplied in the first argument
        InputStream istream;
        if (filename.length() > 0) {
            File inputFile = new File(filename);
            istream = new FileInputStream(inputFile);
        } else {
            // if no filename, use standard input stream
            istream = System.in;
        }

        // use a buffered reader for line-at-a-time
        // reading
        BufferedReader lineReader;
        lineReader = new BufferedReader(new InputStreamReader(istream));

        // read one line at a time
        String line;
        while ((line = lineReader.readLine()) != null) {

            StringTokenizer tokens = new StringTokenizer(line, "\t");

            // String tmp = tokens.nextToken();
            // System.out.println("token " + tmp);
            prodlist[pIndex] = new ActionProduct();
            String category = prodlist[pIndex].getCategory();
            category = tokens.nextToken();
            System.out.println("got category " +category);

            int item = prodlist[pIndex].getItem();
            item = Integer.parseInt(tokens.nextToken());

            String name = prodlist[pIndex].getName();
            System.out.println("got name " +name);

            double price = prodlist[pIndex].getPrice();
            price = Double.parseDouble(tokens.nextToken());

            int units = prodlist[pIndex].getUnits();
            units = Integer.parseInt(tokens.nextToken());
            pIndex++;
        }
    }
4

1 に答える 1

2

これを置き換えます:

static ActionProduct[] prodlist = new ActionProduct[50];

static List<ActionProduct> prodlist = new ArrayList<ActionProduct>();

次にこれ:

        prodlist[pIndex] = new ActionProduct();

        ActionProduct p = new ActionProduct();
        prodlist.add(p);

最後に、 のすべての使用を に置き換えprodlist[pIndex]、それ以外pの場所を取り除きpIndexます。

于 2012-03-31T04:45:14.110 に答える