JTextArea text=new JTextArea();text.setLineWrap(true);//設定自動換行,之後則不需要設定水平滾動條JScrollPane scroll=new JScrollPane(text);// ...
確定! 回上一頁