- import java.awt.Font;
- import javax.swing.JFrame;
- import javax.swing.JScrollPane;
- import javax.swing.JTextArea;
- public class Ch1000 {
-
- JFrame fm;
- JScrollPane sp;
- JTextArea ta;
-
- Ch1000()
- {
- ta=new JTextArea();
- ta.setFont(new Font("新細明體",Font.PLAIN,18));
- ta.setLineWrap(true);
-
- sp=new JScrollPane(ta);
- fm=new JFrame("My Editor");
- fm.setBounds(100, 100, 500, 350);
- fm.setVisible(true);
- fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
- fm.add(sp);
- }
- public static void main(String[] args) {
- new Ch1000();
- }
- }
複製代碼 |