古詩詞大全網 - 成語用法 - JFrame中怎麽讓textarea的滾動條永遠在最下面

JFrame中怎麽讓textarea的滾動條永遠在最下面

JTextArea text =new JTextArea();

JScrollPane jp= new JScrollPane(text);

jp.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_NEVER);

jp.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);