0

我如何分隔要使用的字符串,提取代码

JTextField stockNo = new JTextField(7);
JTextField quantity = new JTextField(7);
TextArea information = new TextArea(5, 50);
JButton purchaseBtn = new JButton("Purchase");
purchaseBtn.addActionListener(this);
//set up gui ect
String key = stockNo.getText();
String quantityTxt = quantity.getText();
String info = "\n\nName: " + StockData.getName(key) + 
                    "\nPrice: £" + (StockData.getPrice(key)) + 
                    "\nNumber in stock: " + StockData.getQuantity(key) +
                    "\nNumber to buy: " + quantityTxt;
information.append(info);

当用户单击purchaseBtn时,之前的信息应该保留在.append那里,我需要以某种方式从信息文本区域中提取信息,并用它来进行计算,有人告诉我arraylist但不知道。

例如

 //in text area
Name: shirt //user inputed 1 for key
Price: £5.00
Number in stock: 15
Number to buy 7 // user inputed 7 for quantity

Name: socks //user inputed 2 for key
Price: £2.50
Number in stock: 4
Number to buy 1 // user inputed 7 for quantity

Name: trouser //user inputed 3 for key
Price: £24.00
Number in stock: 19
Number to buy 4 // user inputed 7 for quantity

我需要得到它来保存每一行的键和数量,这样我以后可以用它做事,并且能够说int totalcost = //the price of all of them added together in our example £31.50

4

1 回答 1

0

您正在使用 OO 语言进行操作。您的所有信息都应该在对象中进行管理,这就是重点。

使用 aJList而不是JTextArea.

将您的购买信息放在一个包含您需要的所有信息的对象中,Purchase例如inStock toBuy`。nameprice,and

然后,您可以根据需要使用 aListCellRenderer来渲染对象的各个元素Purchase

这将使管理变得更加容易。

有关更多信息,请参阅如何使用列表

于 2013-03-19T23:50:19.707 回答