收藏 分销(赏)

房屋中介标准管理专业系统设计项目说明指导书.doc

上传人:快乐****生活 文档编号:2704595 上传时间:2024-06-04 格式:DOC 页数:47 大小:476.04KB
下载 相关 举报
房屋中介标准管理专业系统设计项目说明指导书.doc_第1页
第1页 / 共47页
房屋中介标准管理专业系统设计项目说明指导书.doc_第2页
第2页 / 共47页
房屋中介标准管理专业系统设计项目说明指导书.doc_第3页
第3页 / 共47页
房屋中介标准管理专业系统设计项目说明指导书.doc_第4页
第4页 / 共47页
房屋中介标准管理专业系统设计项目说明指导书.doc_第5页
第5页 / 共47页
点击查看更多>>
资源描述

1、山东建筑大学计算机科学与技术学院程序设计实用案例选讲大作业阐明书题 目: 房地产中介管理系统课 程: 程序设计实用案例选讲 院 (部): 计算机科学与技术专 业: 网络工程班 级: 网络131学生姓名: 高雷学 号: 1113033指引教师: 袁卫华完毕日期: /01/08目 录房地产中介管理系统1一、问题描述1二、设计思想1三、系统构造1四、程序流程(或模块划分)2五、源程序3六、系统测试及操作界面22结 论30参照文献31房地产中介管理系统一、问题描述某房屋中介公司重要业务涉及房屋出租和二手房买卖,请编程实现“房屋中介管理系统”,详细规定如下:一、房源基本信息管理,(房屋编号,户型(如两室

2、一厅,三室两厅),详细地址(坐落位置),建造年月,状态(待售,待出租,已售,已出租等),价格(租金/月或售价),房主姓名,联系方式等), 请编程实现这些基本信息增、删、改、查等操作。二、房屋出租操作,对于所有“待出租”状态房屋,可以执行出租操作,其状态转换为“已出租”,依照出租月数,计算租金,并征收中介费(中介费普通等于一种月租金);处在“已出租”状态房屋不能执行该操作。三、 房屋出售操作,对于所有“待出售”状态房屋,可以执行出手操作,其状态转换为“已售”,依照房价和中介费计算办法(自己查),计算应当征收中介费二、设计思想此管理系统重要实现对房源增删改查四个重要功能,以及将数据输出保存文献。本

3、系统分为管理员和普通顾客两个类别顾客,管理员可以对房源信息增删改查等操作,普通顾客无法更改信息,可以查询信息。此外,针对大量顾客,可以注册新顾客。管理员在添加新居源信息时需要保证输入每一种信息,否则会提示管理员输入完整。修改信息可以修改一种信息,也可以同步修改各种信息,修改成功会依次提示。查询时重要可以通过查询户型以及房屋状态查询。顾客查询到需要房源时通过管理员修改房源信息,并将房屋状态变化出租或出售给顾客。三、 系统构造房地产管理系统涉及7个重要类:BuildingSystem.Java:主操作界面,登录界面、选取顾客类型等信息Admin.java管理员登录界面Admin1.java管理员操

4、作界面RegisterException.java用于两次密码不一致时抛异常User.java普通顾客登录界面User1.java普通顾客操作界面ZhuCe.java新顾客注册四、程序流程(或模块划分) 图4-1 程序流程图五、源程序BuildingStystempackage gaolei;public class BuildingSystem implements Runnable,ActionListener JFrame f1;JPanel p1,p2,p3,p4;JLabel l21;JButton function1,function2,function3,function4;JB

5、utton end;Thread scollWorsThread;boolean stopScorlling; BuildingSystem() f1 = new JFrame(-房屋中介管理系统-);p1 = new JPanel();p1.setBackground(Color.white);p1.setLayout(new GridLayout(5,1,5,5);function1 = new JButton( 【管理员登录通道】 );p1.add(function1);function1.setBackground(Color.getHSBColor(100,152,188);func

6、tion1.addActionListener(this);function2 = new JButton(【普通顾客登陆通道】);function2.setBackground(Color.getHSBColor(100,152,188);p1.add(function2);function2.addActionListener(this);function3 = new JButton( 【新顾客注册】 );p1.add(function3);function3.setBackground(Color.getHSBColor(100,152,188);function3.addAction

7、Listener(this);function4 = new JButton( 【系统信息】 );p1.add(function4);function4.setBackground(Color.getHSBColor(100,152,188);function4.addActionListener(this);end = new JButton( 【 退 出 程 序 】 );p1.add(end);end.setBackground(Color.getHSBColor(100,152,188);end.addActionListener(this);f1.add(BorderLayout.EA

8、ST,p1);p2 = new JPanel();p2.setBackground(Color.getHSBColor(100,10,255);p2.setLayout(new GridLayout(3,1);JLabel empty1 = new JLabel( );p2.add(empty1);l21 = new JLabel( 高雷房地产公司欢迎您O(_)O );l21.setForeground(Color.DARK_GRAY);l21.setFont(new Font(华文行楷,1,17);p2.add(l21);JLabel empty2 = new JLabel( );p2.ad

9、d(empty2);f1.add(BorderLayout.NORTH,p2);p3 = new JPanel()private static final long serialVersionUID = 1L;public void paint(Graphics g) ImageIcon icon=new ImageIcon(F:Java information12.png); Image image=icon.getImage(); g.drawImage(image,0,0,null); ;p3.setBackground(Color.white);JLabel nn = new JLab

10、el( );p3.add(nn);f1.add(BorderLayout.SOUTH,p3);p4 = new JPanel()private static final long serialVersionUID = 1L;public void paint(Graphics g) ImageIcon icon=new ImageIcon(F:Java information12.png); Image image=icon.getImage(); g.drawImage(image,0,0,null);;p4.setBackground(Color.white);f1.add(BorderL

11、ayout.CENTER,p4);scollWorsThread = new Thread(this);scollWorsThread.start();f1.setResizable(false);f1.setSize(470,285);f1.setVisible(true);f1.setLocation(400,180);f1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);public void run() while (true) int x = l21.getBounds().x;int y = l21.getBounds().y;x +=

12、 5;l21.setLocation(x,y);if (x 420) x = 0;l21.setLocation(x,y);try Thread.sleep(1000); catch (InterruptedException e) if (stopScorlling = true) return;public void actionPerformed(ActionEvent e)try if (e.getSource() = function1) new Admin(); else if (e.getSource() = function2) new User(); else if (e.g

13、etSource() = function3) new ZhuCe(); else if (e.getSource() = function4) JOptionPane.showMessageDialog(null,this,系统简介 ,3); else if (e.getSource() = end) System.exit(1); catch (Exception e1) e1.printStackTrace();public static void main(String args) throws Exceptionnew BuildingSystem();Adminpackage ga

14、olei;public class BuildingSystem implements Runnable,ActionListener JFrame f1;JPanel p1,p2,p3,p4;JLabel l21;JButton function1,function2,function3,function4;JButton end;Thread scollWorsThread;boolean stopScorlling; BuildingSystem() f1 = new JFrame(-房屋中介管理系统-);p1 = new JPanel();p1.setBackground(Color.

15、white);p1.setLayout(new GridLayout(5,1,5,5);function1 = new JButton( 【管理员登录通道】 );p1.add(function1);function1.setBackground(Color.getHSBColor(100,152,188);function1.addActionListener(this);function2 = new JButton(【普通顾客登陆通道】);function2.setBackground(Color.getHSBColor(100,152,188);p1.add(function2);fun

16、ction2.addActionListener(this);function3 = new JButton( 【新顾客注册】 );p1.add(function3);function3.setBackground(Color.getHSBColor(100,152,188);function3.addActionListener(this);function4 = new JButton( 【系统信息】 );p1.add(function4);function4.setBackground(Color.getHSBColor(100,152,188);function4.addActionL

17、istener(this);end = new JButton( 【 退 出 程 序 】 );p1.add(end);end.setBackground(Color.getHSBColor(100,152,188);end.addActionListener(this);f1.add(BorderLayout.EAST,p1);p2 = new JPanel();p2.setBackground(Color.getHSBColor(100,10,255);p2.setLayout(new GridLayout(3,1);JLabel empty1 = new JLabel( );p2.add(

18、empty1);l21 = new JLabel( 高雷房地产公司欢迎您O(_)O );l21.setForeground(Color.DARK_GRAY);l21.setFont(new Font(华文行楷,1,17);p2.add(l21);JLabel empty2 = new JLabel( );p2.add(empty2);f1.add(BorderLayout.NORTH,p2);p3 = new JPanel()private static final long serialVersionUID = 1L;public void paint(Graphics g) ImageIc

19、on icon=new ImageIcon(F:Java information12.png); Image image=icon.getImage(); g.drawImage(image,0,0,null);;p3.setBackground(Color.white);JLabel nn = new JLabel( );p3.add(nn);f1.add(BorderLayout.SOUTH,p3);p4 = new JPanel()private static final long serialVersionUID = 1L;public void paint(Graphics g) I

20、mageIcon icon=new ImageIcon(F:Java information12.png); Image image=icon.getImage(); g.drawImage(image,0,0,null); ;p4.setBackground(Color.white);f1.add(BorderLayout.CENTER,p4)scollWorsThread = new Thread(this);scollWorsThread.start();f1.setResizable(false);f1.setSize(470,285);f1.setVisible(true);f1.s

21、etLocation(400,180);f1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);public void run() while (true) int x = l21.getBounds().x;int y = l21.getBounds().y;x += 5;l21.setLocation(x,y);if (x 420) x = 0;l21.setLocation(x,y);try Thread.sleep(1000); catch (InterruptedException e) if (stopScorlling = true)

22、return;public void actionPerformed(ActionEvent e)try if (e.getSource() = function1) new Admin(); else if (e.getSource() = function2) new User(); else if (e.getSource() = function3) new ZhuCe(); else if (e.getSource() = function4) JOptionPane.showMessageDialog(null,this,系统简介 ,3); else if (e.getSource

23、() = end) System.exit(1); catch (Exception e1) e1.printStackTrace();public static void main(String args) throws Exceptionnew BuildingSystem();Admin1package gaolei;public class Admin1 extends JFrame implements ActionListenerJFrame f;JLabel jl,j2,j3,j4,j5,j6,j7,j8;JTextField jf1,jf2,jf3,jf4,jf5,jf6,jf

24、7,jf8;JButton jb1,jb2,jb3,jb4,jb5,jb6,jb7,jb8;JPanel jp1;int id;int m=0;JTextArea result;String DBDriver=sun.jdbc.odbc.JdbcOdbcDriver;String connectionStr=jdbc:odbc:HouseInfo1;Statement stmt=null,s1=null;Connection con=null;ResultSet rs=null;PreparedStatement stmt1=null,stmt2=null,stmt3=null,stmt4=n

25、ull;public Admin1() f = new JFrame(房源基本信息);jp1=new JPanel();jp1.setLayout(new GridLayout(5,2);jl=new JLabel(编号:);j2=new JLabel(房主姓名:);j3=new JLabel(联系方式:);j4=new JLabel(坐落位置:);j5=new JLabel(建造年月:);j6=new JLabel(价格:);j7=new JLabel(户型);j8=new JLabel(房屋状态);jf1=new JTextField(10);jf2=new JTextField(10);

26、jf3=new JTextField(10);jf4=new JTextField(10);jf5=new JTextField(10);jf6=new JTextField(10);jf7=new JTextField(10);jf8=new JTextField(10);jb1=new JButton(录入);jb2=new JButton(修改);jb3=new JButton(删除);jb4=new JButton(查询);jp1.add(jl);jp1.add(jf1);jp1.add(j2);jp1.add(jf2);jp1.add(j3);jp1.add(jf3);jp1.add

27、(j4);jp1.add(jf4);jp1.add(j5);jp1.add(jf5);jp1.add(j6);jp1.add(jf6);jp1.add(j7);jp1.add(jf7);jp1.add(j8);jp1.add(jf8);jp1.add(jb1);jp1.add(jb2);jp1.add(jb3);jp1.add(jb4);jb1.addActionListener(this);jb2.addActionListener(this);jb3.addActionListener(this);jb4.addActionListener(this);f.add(BorderLayout

28、.NORTH,jp1);result = new JTextArea(60,100);result.setEditable(false);JScrollPane jScrollPane=new JScrollPane(result);f.add(BorderLayout.CENTER,jScrollPane);f.setSize(500,600);f.setLocation(600,80);f.setVisible(true);f.validate();public void insert()int m=0;tryClass.forName(DBDriver);/加载驱动器表达式catch(C

29、lassNotFoundException e1)e1.printStackTrace();String id=jf1.getText();String name=jf2.getText();String tel=jf3.getText();String loc=jf4.getText();String riqi=jf5.getText();String price=jf6.getText();String type=jf7.getText();String zt=jf8.getText();if(!id.equals()&!name.equals()&!tel.equals()&!loc.e

30、quals()&!riqi.equals()&!price.equals()&!type.equals()&!zt.equals()trycon=DriverManager.getConnection(connectionStr,);/建立数据库连接String sql1=INSERT INTO house(id,name,tel,loc,riqi,price,type,zt) values (?,?,?,?,?,?,?,?);PreparedStatement stmt1=con.prepareStatement(sql1);stmt1.setString(1,id);stmt1.setSt

31、ring(2,name);stmt1.setString(3,tel);stmt1.setString(4,loc);stmt1.setString(5,riqi);stmt1.setString(6,price);stmt1.setString(7,type);stmt1.setString(8,zt);stmt1.execute();stmt1.close();con.close();m=1;catch (SQLException e1) e1.printStackTrace();if(m=1)JOptionPane.showMessageDialog(this,信息已经成功录入);if(

32、m=0)JOptionPane.showMessageDialog(this,您输入不符合规定);public void xiugai()tryClass.forName(DBDriver);/加载驱动器表达式catch(ClassNotFoundException e1)e1.printStackTrace();int n=0;String id=jf1.getText();String name=jf2.getText();String tel=jf3.getText();String loc=jf4.getText();String riqi=jf5.getText();String p

33、rice=jf6.getText();String type=jf7.getText();String zt=jf8.getText();if(!id.equals()trycon=DriverManager.getConnection(connectionStr,);/建立数据库连接if(!name.equals()String sql2=Update house set name=?where id=?;stmt1=con.prepareStatement(sql2);stmt1.setString(2,id);stmt1.setString(1,name);stmt1.execute()

34、;JOptionPane.showMessageDialog(this,房主姓名已经成功修改);if(!tel.equals()String sql3=Update house set tel=?where id=?;stmt1=con.prepareStatement(sql3);stmt1.setString(2,id);stmt1.setString(1,tel);stmt1.execute();stmt1.close();JOptionPane.showMessageDialog(this,联系方式已经成功修改);if(!loc.equals()String sql3=Update h

35、ouse set loc=?where id=?;stmt1=con.prepareStatement(sql3);stmt1.setString(2,id);stmt1.setString(1,loc);stmt1.execute();stmt1.close();JOptionPane.showMessageDialog(this,坐落位置已经成功修改);if(!riqi.equals()String sql3=Update house set riqi=?where id=?;stmt1=con.prepareStatement(sql3);stmt1.setString(2,id);st

36、mt1.setString(1,riqi);stmt1.execute();stmt1.close();JOptionPane.showMessageDialog(this,建造日期已经成功修改);if(!price.equals()String sql3=Update house set price=?where id=?;stmt1=con.prepareStatement(sql3);stmt1.setString(2,id);stmt1.setString(1,price);stmt1.execute();stmt1.close();JOptionPane.showMessageDia

37、log(this,价格已经成功修改);if(!type.equals()String sql3=Update house set type=?where id=?;stmt1=con.prepareStatement(sql3);stmt1.setString(2,id);stmt1.setString(1,type);stmt1.execute();stmt1.close();JOptionPane.showMessageDialog(this,户型已经成功修改);if(!zt.equals()String sql3=Update house set zt=?where id=?;stmt1

38、=con.prepareStatement(sql3);stmt1.setString(2,id);stmt1.setString(1,zt);stmt1.execute();stmt1.close();JOptionPane.showMessageDialog(this,房屋状态已经成功修改);con.close();n=1;catch (SQLException e1) / TODO Auto-generated catch blocke1.printStackTrace();if(n=0)JOptionPane.showMessageDialog(this,您输入不符合规定);publi

39、c void delete()int n=0;tryClass.forName(DBDriver);/加载驱动器表达式catch(ClassNotFoundException e1)e1.printStackTrace();String id=jf1.getText();String name=jf2.getText();String tel=jf3.getText();String loc=jf4.getText();String riqi=jf5.getText();String price=jf6.getText();String type=jf7.getText();String zt

40、=jf8.getText();if(!id.equals()|!name.equals()|!tel.equals()|!loc.equals()|!riqi.equals()|!price.equals()|!type.equals()|!zt.equals()trycon=DriverManager.getConnection(connectionStr,);/建立数据库连接String sql2=delete from house where id=?;stmt1=con.prepareStatement(sql2);stmt1.setString(1,id);stmt1.execute();stmt1.close();con.close();n=1;catch (SQLException e1

展开阅读全文
部分上传会员的收益排行 01、路***(¥15400+),02、曲****(¥15300+),
03、wei****016(¥13200+),04、大***流(¥12600+),
05、Fis****915(¥4200+),06、h****i(¥4100+),
07、Q**(¥3400+),08、自******点(¥2400+),
09、h*****x(¥1400+),10、c****e(¥1100+),
11、be*****ha(¥800+),12、13********8(¥800+)。
相似文档                                   自信AI助手自信AI助手
搜索标签

当前位置:首页 > 应用文书 > 技术指导

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        获赠5币

©2010-2024 宁波自信网络信息技术有限公司  版权所有

客服电话:4008-655-100  投诉/维权电话:4009-655-100

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :gzh.png    weibo.png    LOFTER.png 

客服