返回列表 發帖

Font 類別

本帖最後由 tonyh 於 2016-9-24 17:33 編輯

試使用 setFont() 方法與 setForeground() 方法, 設定各式各樣的字體與顏色.

  1. import javax.swing.JFrame;
  2. import javax.swing.JLabel;
  3. import java.awt.GridLayout;
  4. import javax.swing.border.EtchedBorder;
  5. import java.awt.Color;
  6. import java.awt.Font;

  7. public class Ch119 {
  8.        
  9.         Font ft[]=new Font[6];
  10.         JLabel lb[]=new JLabel[6];
  11.         JFrame fm;

  12.         Ch119()
  13.         {
  14.                 ft[0]=new Font("標楷體", Font.BOLD, 50);
  15.                 ft[1]=new Font("微軟正黑體", Font.BOLD+Font.ITALIC, 40);
  16.                 ft[2]=new Font("新細明體", Font.ITALIC, 60);
  17.                 ft[3]=new Font("Times New Roman", Font.PLAIN, 40);
  18.                 ft[4]=new Font("Arial", Font.ITALIC, 60);
  19.                 ft[5]=new Font("BlacklightD", Font.PLAIN, 80);
  20.                
  21.                 for(int i=0; i<6; i++)
  22.                 {
  23.                     if(i<3)
  24.                             lb[i]=new JLabel("你好",JLabel.CENTER);
  25.                     else
  26.                             lb[i]=new JLabel("Hello",JLabel.CENTER);
  27.                     lb[i].setBorder(new EtchedBorder());
  28.                     lb[i].setFont(ft[i]);
  29.                 }
  30.                 lb[0].setForeground(Color.BLUE);
  31.                 lb[2].setForeground(Color.RED);
  32.                 lb[4].setForeground(Color.GRAY);
  33.                
  34.                 fm=new JFrame("Font 類別");
  35.                 fm.setBounds(100, 100, 600, 300);
  36.                 fm.setVisible(true);
  37.                 fm.setResizable(true);
  38.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  39.                 fm.setLayout(new GridLayout(2,3));
  40.                 for(int i=0; i<6; i++)
  41.                         fm.add(lb[i]);
  42.         }
  43.        
  44.         public static void main(String[] args) {
  45.                 new Ch119();
  46.         }
  47. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. import javax.swing.JFrame;
  2. import javax.swing.JLabel;
  3. import java.awt.GridLayout;
  4. import javax.swing.border.EtchedBorder;
  5. import java.awt.Color;
  6. import java.awt.Font;

  7. public class Ch100 {
  8.         
  9.         Font ft[]=new Font[6];
  10.         JLabel lb[]=new JLabel[6];
  11.         JFrame fm;

  12.         Ch100()
  13.         {
  14.                 ft[0]=new Font("標楷體", Font.BOLD, 50);
  15.                 ft[1]=new Font("微軟正黑體", Font.BOLD+Font.ITALIC, 40);
  16.                  ft[2]=new Font("新細明體", Font.ITALIC, 60);
  17.                 ft[3]=new Font("Times New Roman", Font.PLAIN, 40);
  18.                 ft[4]=new Font("Arial", Font.ITALIC, 60);
  19.                 ft[5]=new Font("BlacklightD", Font.PLAIN, 80);
  20.                
  21.                 for(int i=0; i<6; i++)
  22.                 {
  23.                     if(i<3)
  24.                             lb[i]=new JLabel("你好",JLabel.CENTER);
  25.                     else
  26.                             lb[i]=new JLabel("Hello",JLabel.CENTER);
  27.                     lb[i].setBorder(new EtchedBorder());
  28.                     lb[i].setFont(ft[i]);
  29.                 }
  30.                 lb[0].setForeground(Color.BLUE);
  31.                 lb[2].setForeground(Color.RED);
  32.                  lb[4].setForeground(Color.GRAY);
  33.                
  34.                 fm=new JFrame("Font 類別");
  35.                 fm.setBounds(100, 100, 600, 300);
  36.                 fm.setVisible(true);
  37.                   fm.setResizable(true);
  38.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  39.                fm.setLayout(new GridLayout(2,3));
  40.                 for(int i=0; i<6; i++)
  41.                         fm.add(lb[i]);
  42.         }
  43.         
  44.         public static void main(String[] args) {
  45.                 new Ch100();
  46.         }
  47. }
複製代碼

TOP

  1. import javax.swing.*;
  2. import java.awt.*;
  3. import javax.swing.border.EtchedBorder;
  4. public class Ch119 {
  5.          private JFrame f;
  6.          private JLabel lb[]=new JLabel[6];
  7.          private Font ft[]=new Font[6];
  8.         Ch119()
  9.         {

  10.            ft[0]=new Font("標楷體",Font.BOLD,50);
  11.            ft[1]=new Font("微軟正黑體",Font.BOLD+Font.ITALIC,40);
  12.            ft[2]=new Font("新細明體",Font.ITALIC,60);
  13.            ft[3]=new Font("Times New Roman",Font.PLAIN,40);
  14.            ft[4]=new Font("Arial",Font.ITALIC,60);
  15.            ft[5]=new Font("Freestyle script",Font.PLAIN,80);
  16.            for(int i=0;i<6;i++)
  17.            {
  18.              if(i<3)
  19.                lb[i]=new JLabel("你好",JLabel.CENTER);
  20.              else
  21.                  lb[i]=new JLabel("Hello",JLabel.CENTER);
  22.              lb[i].setFont(ft[i]);
  23.              lb[i].setBorder(new EtchedBorder());
  24.            }
  25.            f=new JFrame("\u30df\udcef");
  26.            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  27.            f.setResizable(true);
  28.            f.setVisible(true);
  29.            f.setBounds(100,100,300,200);
  30.            f.setLayout(new GridLayout(2,3));
  31.            for(JLabel i:lb)
  32.            f.add(i);
  33.         }
  34.         public static void main(String[] args) {
  35.                 new Ch119();

  36.         }

  37. }
複製代碼

TOP

  1. import javax.swing.JFrame;
  2. import javax.swing.JLabel;
  3. import java.awt.GridLayout;
  4. import javax.swing.border.EtchedBorder;
  5. import java.awt.Color;
  6. import java.awt.Font;
  7. public class Ch01 {
  8.         
  9.         Font ft[]=new Font[6];
  10.         JLabel lb[]=new JLabel[6];
  11.         JFrame fm;

  12.         Ch01()
  13.         {
  14.             ft[0]=new Font("標楷體",Font.BOLD, 50);
  15.             ft[1]=new Font("微軟正黑體",Font.BOLD+Font.ITALIC, 40);
  16.             ft[2]=new Font("新細明體",Font.ITALIC, 60);
  17.             ft[3]=new Font("Times New Roman",Font.PLAIN, 40);
  18.             ft[4]=new Font("Arial",Font.ITALIC, 60);
  19.             ft[5]=new Font("Freestyle Script",Font.PLAIN, 80);
  20.                
  21.             for(int i=0; i<6; i++){
  22.                     if(i<3)
  23.                             lb[i]=new JLabel("你好",JLabel.CENTER);
  24.                     else
  25.                             lb[i]=new JLabel("hello",JLabel.CENTER);
  26.                     lb[i].setBorder(new EtchedBorder());
  27.                     lb[i].setFont(ft[i]);
  28.             }
  29.             
  30.             lb[0].setForeground(Color.BLUE);
  31.             lb[2].setForeground(Color.RED);
  32.             lb[4].setForeground(Color.GRAY);
  33.             
  34.                 fm=new JFrame("");
  35.             fm.setBounds(100, 100, 450, 300);
  36.             fm.setVisible(true);
  37.             fm.setResizable(true);
  38.             fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  39.             fm.setLayout(new GridLayout(2,3));
  40.             for(int i=0; i<6; i++)
  41.                     fm.add(lb[i]);

  42.         }
  43.         
  44.         public static void main(String[] args) {
  45.                 new Ch01();
  46.         }
  47. }
複製代碼
كخخخخخخخخخخخخخ

TOP

  1. import javax.swing.*;
  2. import java.awt.Color;
  3. import java.awt.Font;
  4. import java.awt.GridLayout;
  5. import javax.swing.border.EtchedBorder;
  6. public class Ch119 {
  7.         JFrame fm;
  8.         Font ft[]=new Font[6];
  9.         JLabel lb[]=new JLabel[6];
  10.         Ch119()
  11.         {   
  12.             ft[0]=new Font("標楷體",Font.BOLD,50);
  13.             ft[1]=new Font("微軟正黑體",Font.BOLD+Font.ITALIC,40);
  14.             ft[2]=new Font("新細明體",Font.ITALIC,60);
  15.             ft[3]=new Font("Times New Roman",Font.PLAIN,60);
  16.             ft[4]=new Font("Arial",Font.ITALIC,40);
  17.             ft[5]=new Font("Manorly",Font.PLAIN,80);
  18.                 for(int i=0;i<6;i++)
  19.             {
  20.                     if(i<3)
  21.                             lb[i]=new JLabel("你好",JLabel.CENTER);
  22.                     else
  23.                             lb[i]=new JLabel("Hello",JLabel.CENTER);
  24.                     lb[i].setBorder(new EtchedBorder());
  25.                     lb[i].setFont(ft[i]);
  26.             }
  27.                 lb[0].setForeground(Color.BLUE);
  28.                 lb[2].setForeground(Color.RED);
  29.                 lb[4].setForeground(Color.GRAY);
  30.                 fm=new JFrame("Font 類別");
  31.             fm.setBounds(100, 100, 450, 300);
  32.             fm.setVisible(true);
  33.             fm.setResizable(true);
  34.             fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  35.             fm.setLayout(new GridLayout(2,3));
  36.             for(int i=0;i<6;i++)
  37.             {
  38.                     fm.add(lb[i]);
  39.             }
  40.         }
  41.         public static void main(String[] args) {
  42.             new Ch119();
  43.         }
  44. }
複製代碼

TOP

  1. import javax.swing.JFrame;
  2. import javax.swing.JLabel;
  3. import java.awt.GridLayout;
  4. import javax.swing.border.EtchedBorder;
  5. import java.awt.Color;
  6. import java.awt.Font;

  7. public class Ch118 {
  8.         
  9.         Font ft[]=new Font[6];
  10.         JLabel lb[]=new JLabel[6];
  11.         JFrame fm;

  12.         Ch118()
  13.         {
  14.                 ft[0]=new Font("標楷體", Font.BOLD, 50);
  15.                 ft[1]=new Font("微軟正黑體", Font.BOLD+Font.ITALIC, 40);
  16.                 ft[2]=new Font("新細明體", Font.ITALIC, 60);
  17.                 ft[3]=new Font("Times New Roman", Font.PLAIN, 40);
  18.                 ft[4]=new Font("Arial", Font.ITALIC, 60);
  19.                 ft[5]=new Font("BlacklightD", Font.PLAIN, 80);
  20.                
  21.                 for(int i=0; i<6; i++)
  22.                 {
  23.                     if(i<3)
  24.                             lb[i]=new JLabel("你好",JLabel.CENTER);
  25.                     else
  26.                             lb[i]=new JLabel("Hello",JLabel.CENTER);
  27.                     lb[i].setBorder(new EtchedBorder());
  28.                     lb[i].setFont(ft[i]);
  29.                 }
  30.                 lb[0].setForeground(Color.BLUE);
  31.                 lb[2].setForeground(Color.RED);
  32.                 lb[4].setForeground(Color.GRAY);
  33.                
  34.                 fm=new JFrame("Font 類別");
  35.                 fm.setBounds(100, 100, 600, 300);
  36.                 fm.setVisible(true);
  37.                 fm.setResizable(true);
  38.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  39.                 fm.setLayout(new GridLayout(2,3));
  40.                 for(int i=0; i<6; i++)
  41.                         fm.add(lb[i]);
  42.         }
  43.         
  44.         public static void main(String[] args) {
  45.                 new Ch118();
  46.         }
  47. }
複製代碼

TOP

返回列表