一:JTextField的(文字框)使用:
JTextField 是一個輕量級元件,它允許編輯單行文字。
1.JTextField的常用建構方法:
JTextField() 建構一個新的TextField。
JTextField(int columns) 建構一個具有指定列數的新的空TextField。
JTextField(String text) 建構一個以指定文字初始化的新TextField。
JTextField(String text, int columns) 建構一個用指定文字和列初始化的新TextField。
2.JTextField的常用方法:
SetText(string) 設定文字域中的文字值
GetText()傳回文字域中的輸入文字值
getColumns()傳回文字域的列數
setEditable(Boolean) 設定文字域是否為唯讀狀態
3.JTextField的使用範例:
複製代碼代碼如下:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class JTextFieldDemo1 {
JFrame jf;
JPanel jp;
JTextField jtf1,jtf2,jtf3,jtf4;
public JTextFieldDemo1() {
jf = new JFrame("TextField案例");
Container contentPane = jf.getContentPane();
contentPane.setLayout(new BorderLayout());
jp = new JPanel();
jtf1 = new JTextField();
jtf2 = new JTextField(10);
jtf3 = new JTextField("指定文字內容");
jtf4 = new JTextField("指定內容+指定長度(唯讀狀態)",30);
jtf3.setEnabled(false);
jtf4.setFont(new Font("諧體",Font.BOLD|Font.ITALIC,16));
//設定文字的水平對齊方式
jtf4.setHorizontalAlignment(JTextField.CENTER);
jp.add(jtf1);
jp.add(jtf2);
jp.add(jtf3);
jp.add(jtf4);
contentPane.add(jp);
jf.pack();
jf.setLocation(400, 200);
jf.setVisible(true);
jf.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
}
public static void main(String[] args) {
new JTextFieldDemo1();
}
}
效果圖:
二:JTextArea(文本區)的使用:
1.JTextArea常用的建構方法:
JTextArea() 建構新的TextArea。
JTextArea(String text) 建構顯示指定文字的新的TextArea。
JTextArea(int rows, int columns) 建構具有指定行數和列數的新的空TextArea。
JTextArea(String text, int rows, int columns) 建構具有指定文字、行數和列數的新的TextArea。
使用範例:
複製代碼代碼如下:
JTextArea t1 = new JTextArea();
JTextArea t2 = new JTextArea(2, 8);
JTextArea t3 = new JTextArea("JTextArea3");
JTextArea t4 = new JTextArea("JTextArea4", 5, 10);
2.JTextArea常用的方法:
使用範例:
複製代碼代碼如下:
t1.setText("JTextArea1");// setText()設定文字顯示的內容
t2.append("JTextArea2");// append()方法會將給定文字追加到文件結尾。
t4.setLineWrap(true);// 設定文字區的換行策略。
t4.setFont(new Font("標楷體", Font.BOLD, 16)); //設定目前字體。
t4.setTabSize(2);//使用setTabSize()方法設定[Tab]鍵的跳離距離
將JTextArea放入JScrollPane中,這樣就能利用滾動的效果看到輸入超過JTextArea高度的文字.
3.JTextArea使用的案例:
複製代碼代碼如下:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
//實作介面ActionListener
public class JTextAreaDemo3 implements ActionListener {
JFrame jf;
JPanel jpanel;
JButton jb1, jb2, jb3;
JTextArea jta = null;
JScrollPane jscrollPane;
public JTextAreaDemo3() {
jf = new JFrame("JTextArea案例3");
Container contentPane = jf.getContentPane();
contentPane.setLayout(new BorderLayout());
jta = new JTextArea(10, 15);
jta.setTabSize(4);
jta.setFont(new Font("標楷體", Font.BOLD, 16));
jta.setLineWrap(true);// 啟動自動換行功能
jta.setWrapStyleWord(true);// 啟動斷行不斷字功能
jta.setBackground(Color.pink);
jscrollPane = new JScrollPane(jta);
jpanel = new JPanel();
jpanel.setLayout(new GridLayout(1, 3));
jb1 = new JButton("複製");
jb1.addActionListener(this);
jb2 = new JButton("貼上");
jb2.addActionListener(this);
jb3 = new JButton("剪切");
jb3.addActionListener(this);
jpanel.add(jb1);
jpanel.add(jb2);
jpanel.add(jb3);
contentPane.add(jscrollPane, BorderLayout.CENTER);
contentPane.add(jpanel, BorderLayout.SOUTH);
jf.setSize(400, 300);
jf.setLocation(400, 200);
jf.setVisible(true);
jf.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
});
}
// 覆寫介面ActionListener的方法actionPerformed
public void actionPerformed(ActionEvent e) {
if (e.getSource() == jb1) {
jta.copy();
} else if (e.getSource() == jb2) {
jta.paste();
} else if (e.getSource() == jb3) {
jta.cut();
}
}
public static void main(String[] args) {
new JTextAreaDemo3();
}
}
運行結果演示: