JTextArea是JAVA中文字編輯的其中一個物件,他允許輸入多行文字。
import javax.swing.JFrame;
import javax.swing.JTextArea;
public class JTextAreaEX
{
JFrame
ExOfJFrame=new JFrame();
JTextArea
ExOfJTextArea=new JTextArea();à宣告JTextArea
JTextAreaEX()
{
ExOfJFrame.setTitle("example!!");
ExOfJFrame.setSize(400,300);
ExOfJFrame.setDefaultCloseOperation(2);
ExOfJFrame.add(ExOfJTextArea);à把宣告出的TextArea加進Frame裡
ExOfJFrame.setVisible(true);
}
public static void main(String[] arg)
{
new JTextAreaEX();
}
}
如果您喜歡我的文章,請在文章最末按5下Like!
我將得到LikeCoin的回饋:)
回饋由LikeCoin基金會出資,您只要註冊/登入帳號(FB、Google帳號都可以註冊,流程超快),按L五次左鍵,可以贊助我的文章且完全不會花到錢!
支持創作,正向交流:)
沒有留言:
張貼留言