• 大小: 58KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-01
  • 语言: Java
  • 标签: java  +  SqlServer  

资源简介

java+SqlServer做的简单的宾馆管理系统

资源截图

代码片段和文件信息

package hotel2;

import java.awt.*;
import javax.swing.JLabel;
import java.util.*;
import java.text.*;




  public class Clocklabel extends JLabel implements Runnable{
  private Thread clockthread=null;
      public Clocklabel()
     {
      if(clockthread==null)
         {
           clockthread=new Thread(this“clock“);
           clockthread.start();
          }

      }
       public void run()
        {
          while(true)
            {
              Calendar cal=Calendar.getInstance();
              Date date=cal.getTime();
              DateFormat dateformatter=DateFormat.getTimeInstance();
              this.setText(dateformatter.format(date));
              try{
                  Thread.sleep(1000);
                 }
              catch(Exception e){}
            }

         }

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

     目录          0  2006-11-05 06:59  hotel3\bak

     文件    1048576  2004-01-13 19:53  hotel3\BasicTX_LOGA_0000000000

     文件       8192  2004-01-13 19:53  hotel3\BasicTX_LOGA_ANCHOR

     目录          0  2006-11-05 06:59  hotel3\classes\package cache

     文件       1273  2004-02-20 23:53  hotel3\classes\hotel2\Clocklabel.class

     文件       2578  2004-04-18 13:45  hotel3\classes\hotel2\Countdays.class

     文件        517  2004-04-18 13:44  hotel3\classes\hotel2\frame1$1.class

     文件      20226  2004-04-18 13:44  hotel3\classes\hotel2\frame1.class

     文件        563  2004-01-13 00:21  hotel3\classes\hotel2\frame1_jButton1_actionAdapter$1.class

     文件        652  2004-04-18 13:44  hotel3\classes\hotel2\frame1_jButton1_actionAdapter.class

     文件        652  2004-04-18 13:44  hotel3\classes\hotel2\frame1_jButton2_actionAdapter.class

     文件        652  2004-04-18 13:44  hotel3\classes\hotel2\frame1_jButton3_actionAdapter.class

     文件        652  2004-04-18 13:44  hotel3\classes\hotel2\frame1_jButton4_actionAdapter.class

     文件        652  2004-04-18 13:44  hotel3\classes\hotel2\frame1_jButton5_actionAdapter.class

     文件        658  2004-04-18 13:44  hotel3\classes\hotel2\frame1_jMenuItem1_actionAdapter.class

     目录          0  2006-11-05 06:59  hotel3\classes\hotel2

     目录          0  2006-11-05 06:59  hotel3\classes

     目录          0  2006-11-05 06:59  hotel3\bak\Clocklabel

     目录          0  2006-11-05 06:59  hotel3\doc\hotel2

     目录          0  2006-11-05 06:59  hotel3\doc

     目录          0  2006-11-05 06:59  hotel3\bak\hotel2

     文件        987  2004-02-14 21:06  hotel3\src\hotel2\hotel2\Clocklabel.class

     文件       2004  2004-02-14 21:06  hotel3\src\hotel2\hotel2\Countdays.class

     文件        384  2004-02-14 21:06  hotel3\src\hotel2\hotel2\frame1$1.class

     文件      14071  2004-02-14 21:06  hotel3\src\hotel2\hotel2\frame1.class

     文件        492  2004-02-14 21:06  hotel3\src\hotel2\hotel2\frame1_jButton1_actionAdapter.class

     文件        492  2004-02-14 21:06  hotel3\src\hotel2\hotel2\frame1_jButton2_actionAdapter.class

     文件        492  2004-02-14 21:06  hotel3\src\hotel2\hotel2\frame1_jButton3_actionAdapter.class

     文件        492  2004-02-14 21:06  hotel3\src\hotel2\hotel2\frame1_jButton4_actionAdapter.class

     文件        492  2004-02-14 21:06  hotel3\src\hotel2\hotel2\frame1_jButton5_actionAdapter.class

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

评论

共有 条评论