• 大小: 811KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-08
  • 语言: Java
  • 标签: GUI  物业管理  

资源简介

Java做的桌面应用程序的小区物业管理系统,有源码,有数据库,但没有文档。

资源截图

代码片段和文件信息

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  num_04\database\wy.sql

     文件        357  2010-11-13 17:36  num_04\JavaPrj_4 MySQL\.classpath

     文件        388  2010-11-14 09:20  num_04\JavaPrj_4 MySQL\.project

     文件       1901  2010-11-14 11:23  num_04\JavaPrj_4 MySQL\src\com\wy\util\Business.java

     文件        543  2010-11-14 16:47  num_04\JavaPrj_4 MySQL\src\com\wy\util\nowdate.java

     文件       4031  2010-11-13 17:27  num_04\JavaPrj_4 MySQL\src\com\wy\query\Community_Master.java

     文件       3200  2010-11-13 17:27  num_04\JavaPrj_4 MySQL\src\com\wy\query\Community_allMaster.java

     文件       4220  2010-11-13 17:25  num_04\JavaPrj_4 MySQL\src\com\wy\query\Community_query.java

     文件       3930  2010-11-13 17:26  num_04\JavaPrj_4 MySQL\src\com\wy\query\Community_query_room.java

     文件      61692  2010-11-14 17:22  num_04\JavaPrj_4 MySQL\src\com\wy\query\Fees_query.java

     文件       3856  2010-11-14 11:24  num_04\JavaPrj_4 MySQL\src\com\wy\main\Login.java

     文件       4968  2010-11-14 15:06  num_04\JavaPrj_4 MySQL\src\com\wy\main\Main.java

     文件       5705  2010-11-14 02:16  num_04\JavaPrj_4 MySQL\src\com\wy\form\ChargeReport.java

     文件      15010  2010-11-14 17:44  num_04\JavaPrj_4 MySQL\src\com\wy\form\MonthDataInput.java

     文件       9956  2010-11-14 14:43  num_04\JavaPrj_4 MySQL\src\com\wy\form\MonthDataInputBuilding.java

     文件       9583  2010-11-13 17:21  num_04\JavaPrj_4 MySQL\src\com\wy\form\MonthDataOperate.java

     文件      10768  2010-11-14 15:04  num_04\JavaPrj_4 MySQL\src\com\wy\form\PublicDataInputframe.java

     文件       8230  2010-11-14 02:29  num_04\JavaPrj_4 MySQL\src\com\wy\form\PublicMonthDataOperate.java

     文件      14049  2010-11-14 13:01  num_04\JavaPrj_4 MySQL\src\com\wy\base\Building_info.java

     文件       4066  2010-11-13 17:29  num_04\JavaPrj_4 MySQL\src\com\wy\base\Community_Main.java

     文件      10328  2010-11-14 11:45  num_04\JavaPrj_4 MySQL\src\com\wy\base\Community_info.java

     文件      15170  2010-11-14 13:09  num_04\JavaPrj_4 MySQL\src\com\wy\base\MasterInfo.java

     文件       1927  2010-11-14 14:03  num_04\JavaPrj_4 MySQL\src\com\wy\base\Payment.java

     文件       4914  2010-11-14 13:49  num_04\JavaPrj_4 MySQL\src\com\wy\base\PriceChange.java

     文件     709922  2008-10-21 04:02  num_04\JavaPrj_4 MySQL\lib\mysql-connector-java-5.1.7-bin.jar

     文件       1950  2010-11-14 14:44  num_04\JavaPrj_4 MySQL\bin\com\wy\util\Business.class

     文件        871  2010-11-14 17:44  num_04\JavaPrj_4 MySQL\bin\com\wy\util\nowdate.class

     文件       4909  2010-11-14 14:44  num_04\JavaPrj_4 MySQL\bin\com\wy\query\Community_Master.class

     文件       4325  2010-11-14 14:44  num_04\JavaPrj_4 MySQL\bin\com\wy\query\Community_allMaster.class

     文件       4689  2010-11-14 14:44  num_04\JavaPrj_4 MySQL\bin\com\wy\query\Community_query.class

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

评论

共有 条评论