• 大小: 820KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-10
  • 语言: 其他
  • 标签: 管理系统  

资源简介

物业管理系统(带有数据库,可以正常运行)

资源截图

代码片段和文件信息

package com.wy.base;
import java.awt.AWTEvent;
import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Vector;

import javax.swing.JButton;
import javax.swing.Jframe;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.JTextField;
import javax.swing.table.AbstractTableModel;

import com.wy.util.Business;



public class Building_info extends Jframe
{


private JPanel buttonPaneltablePanelfieldPanelfieldPanel1fieldPanel2;

private JLabel label1 = new JLabel();
private JTextField districtid = new JTextField(3);

private JLabel label2 = new JLabel();
private JTextField buildingid = new JTextField(3);

private JLabel label3 = new JLabel();
private JTextField storey = new JTextField(4);

private JLabel label4 = new JLabel();
private JTextField area = new JTextField(4);

private JLabel label5 = new JLabel();
private JTextField height = new JTextField(4);

private JLabel label6 = new JLabel();
private JTextField type = new JTextField(5);

private JLabel label7 = new JLabel();
private JTextField state = new JTextField(6);


private JButton searchButton = new JButton(“按小区查询“);
private JButton addButton = new JButton(“添加“);
private JButton changeButton = new JButton(“修改“);
private JButton deleteButton = new JButton(“删除“);
private JButton renewButton = new JButton(“重置“);
private JButton updateButton= new JButton(“更新“);

String title[]= {“小区名称““楼宇编号““楼宇层数““产权面积““楼宇高度““类型““楼宇状态“};

Vector vector=new Vector();

Connection connection = null;
ResultSet rSet = null;
Statement statement = null;
AbstractTableModel tm;

public Building_info()
{
enableEvents(AWTEvent.WINDOW_EVENT_MASK);
try
{
jbInit();
}
catch(Exception e)
{
e.printStackTrace();
}
}

private void jbInit() throws Exception
{
Container con = getContentPane();
con.setLayout(new BorderLayout());

label1.setText(“小区编号“);
label2.setText(“楼宇编号“);
label3.setText(“楼宇层数“);
label4.setText(“产权面积“);
label5.setText(“楼宇高度“);
label6.setText(“类型“);
label7.setText(“楼宇状态“);
searchButton.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
searchButton_actionPerformed(e);
}
});

addButton.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
addButton_actionPerformed(e);
}
});

changeButton.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
changeButton_actionPerformed(e);
}
});


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       4525  2010-11-14 17:53  物业管理系统\database\wy.sql

     文件        357  2010-11-13 17:36  物业管理系统\JavaPrj_4 MySQL\.classpath

     文件        388  2010-11-14 09:20  物业管理系统\JavaPrj_4 MySQL\.project

     文件        739  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\Building_info$1.class

     文件        736  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\Building_info$2.class

     文件        739  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\Building_info$3.class

     文件        739  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\Building_info$4.class

     文件        738  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\Building_info$5.class

     文件        739  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\Building_info$6.class

     文件       1655  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\Building_info$7.class

     文件      11783  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\Building_info.class

     文件        742  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\Community_info$1.class

     文件        745  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\Community_info$2.class

     文件        745  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\Community_info$3.class

     文件        744  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\Community_info$4.class

     文件        745  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\Community_info$5.class

     文件       1661  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\Community_info$6.class

     文件       9545  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\Community_info.class

     文件       1291  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\Community_Main$SelectDistrict$1.class

     文件       3308  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\Community_Main$SelectDistrict.class

     文件       3790  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\Community_Main.class

     文件        721  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\MasterInfo$1.class

     文件        718  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\MasterInfo$2.class

     文件        721  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\MasterInfo$3.class

     文件        721  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\MasterInfo$4.class

     文件        720  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\MasterInfo$5.class

     文件        721  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\MasterInfo$6.class

     文件       1637  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\MasterInfo$7.class

     文件      12645  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\MasterInfo.class

     文件       2653  2010-11-14 14:44  物业管理系统\JavaPrj_4 MySQL\bin\com\wy\base\Payment.class

............此处省略97个文件信息

评论

共有 条评论