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

📄 querypanel.java~8~

📁 此次上传的源代码为信用卡管理系统。Java版本
💻 JAVA~8~
字号:
package card;

import java.awt.*;
import javax.swing.*;
import java.sql.*;

public class queryPanel extends JPanel
{
   public queryPanel(String id)
  {
    try
    {
      this.CardID=id;
      jbInit();
    } catch( Exception exception )
    {
      exception.printStackTrace();
    }
  }

  private void jbInit() throws Exception
  {
    this.setLayout( null );
    jLabel1.setFont( new java.awt.Font( "Dialog", Font.PLAIN, 18 ) );
    jLabel1.setHorizontalAlignment( SwingConstants.CENTER );
    jLabel1.setText( "用户名:" );
    jLabel1.setBounds( new Rectangle( 64, 46, 76, 18 ) );
    jLabel2.setFont( new java.awt.Font( "Dialog", Font.BOLD, 18 ) );
    jLabel2.setForeground( Color.red );
    jLabel2.setBounds( new Rectangle( 207, 41, 81, 23 ) );
    jLabel3.setFont( new java.awt.Font( "Dialog", Font.PLAIN, 18 ) );
    jLabel3.setHorizontalAlignment( SwingConstants.CENTER );
    jLabel3.setText( "卡 号:" );
    jLabel3.setBounds( new Rectangle( 63, 117, 75, 30 ) );
    jLabel4.setFont( new java.awt.Font( "Dialog", Font.BOLD, 18 ) );
    jLabel4.setForeground( Color.red );
    jLabel4.setBounds( new Rectangle( 209, 118, 90, 26 ) );
    jLabel5.setFont( new java.awt.Font( "Dialog", Font.PLAIN, 18 ) );
    jLabel5.setHorizontalAlignment( SwingConstants.CENTER );
    jLabel5.setText( "余 额:" );
    jLabel5.setBounds( new Rectangle( 66, 193, 81, 19 ) );
    jLabel6.setFont( new java.awt.Font( "Dialog", Font.BOLD, 18 ) );
    jLabel6.setForeground( Color.red );
    jLabel6.setBounds( new Rectangle( 208, 191, 94, 25 ) );
    this.add( jLabel1 );
    this.add( jLabel3 );
    this.add( jLabel5 );
    this.add( jLabel6 );
    this.add( jLabel4 );
    this.add( jLabel2 );

    try
    {
      con = cardConnect.getconn();
      query = con.createStatement();
      queryString = "Select LeaveMoney,Name From queryview Where CardID=" + CardID;
      System.out.println(queryString);
      rs = query.executeQuery( queryString ); //得到查询结果
      if( rs.next() )
      {
        jLabel6.setText( rs.getString(1 ) );
        jLabel4.setText( CardID );
        jLabel2.setText( rs.getString(2) );
      }
    }catch(Exception ee)
    {}
    finally
    {
      cardConnect.close(rs);
      cardConnect.close(query);
      cardConnect.close(con);
    }
  }

  JLabel jLabel1 = new JLabel();
  JLabel jLabel2 = new JLabel();
  JLabel jLabel3 = new JLabel();
  JLabel jLabel4 = new JLabel();
  JLabel jLabel5 = new JLabel();
  JLabel jLabel6 = new JLabel();
  //自定义变量
  String CardID;
  String queryString;
  Connection con;
  Statement query;
  ResultSet rs;
}

⌨️ 快捷键说明

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