⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 multilinecellexample.java

📁 Swing Examples Sources Codes 里包含了Java Web开发的一些实例代码
💻 JAVA
字号:
/* * If You can accept all cells have same Height. *//* (swing1.1beta3) *///package jp.gr.java_conf.tame.swing.examples;import javax.swing.*;import javax.swing.table.*;import javax.swing.border.*;import java.util.*;import java.awt.*;import java.awt.event.*;import jp.gr.java_conf.tame.swing.table.*;/** * @version 1.0 11/09/98 */public class MultiLineCellExample extends JFrame {  MultiLineCellExample() {    super( "Multi-Line Cell Example" );    DefaultTableModel dm = new DefaultTableModel() {      public Class getColumnClass(int columnIndex) {        return String.class;      }    };    dm.setDataVector(new Object[][]{{"a\na","b\nb","c\nc"},                                    {"A\nA","B\nB","C\nC"}},                     new Object[]{"1","2","3"});    JTable table = new JTable( dm );        int lines = 2;    table.setRowHeight( table.getRowHeight() * lines);        //    // table.setRowHeight(0);    //    // I got "java.lang.IllegalArgumentException: New row height less than 1"    //    table.setDefaultRenderer(String.class, new MultiLineCellRenderer());    JScrollPane scroll = new JScrollPane( table );    getContentPane().add( scroll );    setSize( 400, 130 );    setVisible(true);  }  public static void main(String[] args) {    MultiLineCellExample frame = new MultiLineCellExample();    frame.addWindowListener( new WindowAdapter() {      public void windowClosing( WindowEvent e ) {        System.exit(0);      }    });  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -