-1
有人可以幫助我嗎?我的問題是如何在文本框內打印所有輸出?在文本框上打印輸出
System.out.print("Enter sentence");
word = input.nextLine();
word= word.toUpperCase();
String[] t = word.split(" ");
for (String e : t)
if(e.startsWith("A")){
JFrame f= new JFrame ("Output");
JLabel lbl = new JLabel (e);
f.add(lbl);
f.setSize(300,200);
f.setVisible(true);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.setLocationRelativeTo(null);
創建'JTextField'和使用方法'的setText(文字);' – GOXR3PLUS