Báo cáo tài liệu vi phạm
Giới thiệu
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Sức khỏe - Y tế
Văn bản luật
Nông Lâm Ngư
Kỹ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
THỊ TRƯỜNG NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Tìm
Danh mục
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Y tế sức khỏe
Văn bản luật
Nông lâm ngư
Kĩ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Thông tin
Tài liệu Xanh là gì
Điều khoản sử dụng
Chính sách bảo mật
0
Trang chủ
Văn Bản Luật
Công nghệ thông tin
lt_java_csdl_bai_3_components_part_2_6359
Đang chuẩn bị liên kết để tải về tài liệu:
lt_java_csdl_bai_3_components_part_2_6359
Bích Hồng
91
30
pdf
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
| LẬP TRÌNH JAVA CSDL BÀI 3 COMPONENTS Nguyễn Hữu Thể 1 Nội dung JList JTable JMenu JOptionPane JFileChooser 2 JList Creating a Model There are three ways to create a list model DefaultListModel everything is pretty much taken care of for you. The examples in this page use DefaultListModel. AbstractListModel you manage the data and invoke the quot fire quot methods. For this approach you must subclass AbstractListModel and implement the getSize and getElementAt methods inherited from the ListModel interface. ListModel you manage everything. JList Initializing a List list new JList data data has type Object list.setSelectionMode ListSelectionModel.SINGLE_INTERVAL_SE LECTION list.setLayoutOrientation JList.HORIZONTAL_WRAP list.setVisibleRowCount -1 . JScrollPane listScroller new JScrollPane list listScroller.setPreferredSize new Dimension 250 80 JList DefaultListModel Methods addElement Object e get int index getSize getElementAt int index remove int index Elements removeAllElements 5 JList Methods setModel ListModel model getModel getMaxSelectionIndex getMinSelectionIndex getSelectedIndex getSelectedIndices getSelectedValue getSelectedValues Events valueChanged 6 JTable 7 JOptionPane 8 JTable DefaultTableModel addColumn Object obj addRow Object obj getColumnCount getRowCount getValueAt int row int col setValueAt Object obj int row int col 9 JTable Methods setModel TableModel tm getModel getValueAt int row int col getRowCount getColumnCount Events mouseClicked 10 JTable package project import javax.swing.JFrame import javax.swing.JScrollPane import javax.swing.JTable public class JTableComponent public static void main String argv throws Exception Object cellData quot 1-1 quot quot 1-2 quot quot 2-1 quot quot 2-2 quot String columnNames quot col1 quot quot col2 quot JTable table new JTable cellData columnNames JFrame f new JFrame f.setSize 300 300 f.add new JScrollPane table f.setVisible true 11 JTable DefaultTableModel Constructs a default DefaultTableModel which is
TÀI LIỆU LIÊN QUAN
TỔNG QUAN VỀ NGÔN NGỮ LT WEB CÔNG CỤ LẬP TRÌNH WEB HIỆN NAY MS(ASP, ASP.NET) JAVA SUN
lt_java_csdl_bai_0_gioi_thieu_9668
lt_java_csdl_bai_1_frame_dialog_desktop_panel_4647
lt_java_csdl_bai_3_components_part_1_2236
lt_java_csdl_bai_3_components_part_2_6359
lt_java_csdl_bai_2_swinglayout_8366
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.