styling.java
来自「learning java的源代码。书中每个实例都有相关的代码example。」· Java 代码 · 共 56 行
JAVA
56 行
//file: Styling.javaimport java.awt.*;import java.awt.event.*;import javax.swing.*;import javax.swing.text.*;public class Styling extends JFrame { private JTextPane textPane; public Styling( ) { super("Styling v1.0"); setSize(300, 200); setLocation(200, 200); textPane = new JTextPane( ); textPane.setFont(new Font("Serif", Font.PLAIN, 24)); // create some handy attribute sets SimpleAttributeSet red = new SimpleAttributeSet( ); StyleConstants.setForeground(red, Color.red); StyleConstants.setBold(red, true); SimpleAttributeSet blue = new SimpleAttributeSet( ); StyleConstants.setForeground(blue, Color.blue); SimpleAttributeSet italic = new SimpleAttributeSet( ); StyleConstants.setItalic(italic, true); StyleConstants.setForeground(italic, Color.orange); // add the text append("In a ", null); append("sky", blue); append(" full of people\nOnly some want to ", null); append("fly", italic); append("\nIsn't that ", null); append("crazy", red); append("?", null); Container content = getContentPane( ); content.add(new JScrollPane(textPane), BorderLayout.CENTER); setVisible(true); } protected void append(String s, AttributeSet attributes) { Document d = textPane.getDocument( ); try { d.insertString(d.getLength( ), s, attributes); } catch (BadLocationException ble) {} } public static void main(String[] args) { JFrame f = new Styling( ); f.addWindowListener(new WindowAdapter( ) { public void windowClosing(WindowEvent we) { System.exit(0); } }); f.setVisible(true); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?