最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

java實現(xiàn)變更文件查詢的方法

 更新時間:2015年07月16日 15:37:13   作者:罪惡的花生  
這篇文章主要介紹了java實現(xiàn)變更文件查詢的方法,可通過java查詢文件最后修改時間的方法實現(xiàn)查找變更文件的功能,具有一定參考借鑒價值,需要的朋友可以參考下

本文實例講述了java實現(xiàn)變更文件查詢的方法。分享給大家供大家參考。具體如下:

自己經(jīng)常發(fā)布包時需要查找那些文件時上次發(fā)包后更新的數(shù)據(jù)文件,所以寫了這個發(fā)布包,
拷貝輸出的命令,dos窗口下執(zhí)行,
為啥不直接復(fù)制文件,因為java拷貝文件會修改文件最后修改日期,所以采用dos下的拷貝。

/*
 *
 * 更改所生成文件模板為
 * 窗口 > 首選項 > Java > 代碼生成 > 代碼和注釋
 */
package com.cn.wangk.tools;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Component;
import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Calendar;
import java.util.GregorianCalendar;
import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JPanel;
/** *//**
 * Bean to display a month calendar in a JPanel. Only works for the Western
 * calendar.
 * 
 * @author Ian F. Darwin, http://www.darwinsys.com/
 * @version $Id: Cal.java,v 1.5 2004/02/09 03:33:45 ian Exp $
 */
public class Cal extends JPanel{
 /** *//** The currently-interesting year (not modulo 1900!) */
 protected int yy;
 /** *//** Currently-interesting month and day */
 protected int mm, dd;
 /** *//** The buttons to be displayed */
 protected JButton labs[][];
 /** *//** The number of day squares to leave blank at the start of this month */
 protected int leadGap = 0;
 /** *//** A Calendar object used throughout */
 Calendar calendar = new GregorianCalendar();
 /** *//** Today's year */
 protected final int thisYear = calendar.get(Calendar.YEAR);
 /** *//** Today's month */
 protected final int thisMonth = calendar.get(Calendar.MONTH);
 /** *//** One of the buttons. We just keep its reference for getBackground(). */
 private JButton b0;
 /** *//** The month choice */
 private JComboBox monthChoice;
 /** *//** The year choice */
 private JComboBox yearChoice;
 /** *//**
  * Construct a Cal, starting with today.
  */
 Cal(){
  super();
  setYYMMDD(calendar.get(Calendar.YEAR), calendar.get(Calendar.MONTH),
    calendar.get(Calendar.DAY_OF_MONTH));
  buildGUI();
  recompute();
 }
 /** *//**
  * Construct a Cal, given the leading days and the total days
  * 
  * @exception IllegalArgumentException
  *        If year out of range
  */
 Cal(int year, int month, int today){
  super();
  setYYMMDD(year, month, today);
  buildGUI();
  recompute();
 }
 private void setYYMMDD(int year, int month, int today){
  yy = year;
  mm = month;
  dd = today;
 }
 String[] months ={ "January", "February", "March", "April", "May", "June",
   "July", "August", "September", "October", "November", "December" };
 /** *//** Build the GUI. Assumes that setYYMMDD has been called. */
 private void buildGUI(){
  getAccessibleContext().setAccessibleDescription(
    "Calendar not accessible yet. Sorry!");
  setBorder(BorderFactory.createEtchedBorder());
  setLayout(new BorderLayout());
  JPanel tp = new JPanel();
  tp.add(monthChoice = new JComboBox());
  for (int i = 0; i < months.length; i++)
   monthChoice.addItem(months[i]);
  monthChoice.setSelectedItem(months[mm]);
  monthChoice.addActionListener(new ActionListener(){
   public void actionPerformed(ActionEvent ae){
    int i = monthChoice.getSelectedIndex();
    if (i >= 0){
     mm = i;
     // System.out.println("Month=" + mm);
     recompute();
    }
   }
  });
  monthChoice.getAccessibleContext().setAccessibleName("Months");
  monthChoice.getAccessibleContext().setAccessibleDescription(
    "Choose a month of the year");
  tp.add(yearChoice = new JComboBox());
  yearChoice.setEditable(true);
  for (int i = yy - 5; i < yy + 5; i++)
   yearChoice.addItem(Integer.toString(i));
  yearChoice.setSelectedItem(Integer.toString(yy));
  yearChoice.addActionListener(new ActionListener(){
   public void actionPerformed(ActionEvent ae){
    int i = yearChoice.getSelectedIndex();
    if (i >= 0){
     yy = Integer.parseInt(yearChoice.getSelectedItem()
       .toString());
     // System.out.println("Year=" + yy);
     recompute();
    }
   }
  });
  add(BorderLayout.CENTER, tp);
  JPanel bp = new JPanel();
  bp.setLayout(new GridLayout(7, 7));
  labs = new JButton[6][7]; // first row is days
  bp.add(b0 = new JButton("S"));
  bp.add(new JButton("M"));
  bp.add(new JButton("T"));
  bp.add(new JButton("W"));
  bp.add(new JButton("R"));
  bp.add(new JButton("F"));
  bp.add(new JButton("S"));
  ActionListener dateSetter = new ActionListener(){
   public void actionPerformed(ActionEvent e){
    String num = e.getActionCommand();
    if (!num.equals("")){
     // set the current day highlighted
     setDayActive(Integer.parseInt(num));
     // When this becomes a Bean, you can
     // fire some kind of DateChanged event here.
     // Also, build a similar daySetter for day-of-week btns.
    }
   }
  };
  // Construct all the buttons, and add them.
  for (int i = 0; i < 6; i++)
   for (int j = 0; j < 7; j++){
    bp.add(labs[i][j] = new JButton(""));
    labs[i][j].addActionListener(dateSetter);
   }
  add(BorderLayout.SOUTH, bp);
 }
 public final static int dom[] ={ 31, 28, 31, 30, /**//* jan feb mar apr */
 31, 30, 31, 31, /**//* may jun jul aug */
 30, 31, 30, 31 /**//* sep oct nov dec */
 };
 /** *//** Compute which days to put where, in the Cal panel */
 protected void recompute(){
  // System.out.println("Cal::recompute: " + yy + ":" + mm + ":" + dd);
  if (mm < 0 || mm > 11)
   throw new IllegalArgumentException("Month " + mm
     + " bad, must be 0-11");
  clearDayActive();
  calendar = new GregorianCalendar(yy, mm, dd);
  // Compute how much to leave before the first.
  // getDay() returns 0 for Sunday, which is just right.
  leadGap = new GregorianCalendar(yy, mm, 1).get(Calendar.DAY_OF_WEEK) - 1;
  // System.out.println("leadGap = " + leadGap);
  int daysInMonth = dom[mm];
  if (isLeap(calendar.get(Calendar.YEAR)) && mm > 1)
   ++daysInMonth;
  // Blank out the labels before 1st day of month
  for (int i = 0; i < leadGap; i++){
   labs[0][i].setText("");
  }
  // Fill in numbers for the day of month.
  for (int i = 1; i <= daysInMonth; i++){
   JButton b = labs[(leadGap + i - 1) / 7][(leadGap + i - 1) % 7];
   b.setText(Integer.toString(i));
  }
  // 7 days/week * up to 6 rows
  for (int i = leadGap + 1 + daysInMonth; i < 6 * 7; i++){
   labs[(i) / 7][(i) % 7].setText("");
  }
  // Shade current day, only if current month
  if (thisYear == yy && mm == thisMonth)
   setDayActive(dd); // shade the box for today
  // Say we need to be drawn on the screen
  repaint();
 }
 /** *//**
  * isLeap() returns true if the given year is a Leap Year.
  * 
  * "a year is a leap year if it is divisible by 4 but not by 100, except
  * that years divisible by 400 *are* leap years." -- Kernighan & Ritchie,
  * _The C Programming Language_, p 37.
  */
 public boolean isLeap(int year){
  if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0)
   return true;
  return false;
 }
 /** *//** Set the year, month, and day */
 public void setDate(int yy, int mm, int dd){
  // System.out.println("Cal::setDate");
  this.yy = yy;
  this.mm = mm; // starts at 0, like Date
  this.dd = dd;
  recompute();
 }
 /** *//** Unset any previously highlighted day */
 private void clearDayActive(){
  JButton b;
  // First un-shade the previously-selected square, if any
  if (activeDay > 0){
   b = labs[(leadGap + activeDay - 1) / 7][(leadGap + activeDay - 1) % 7];
   b.setBackground(b0.getBackground());
   b.repaint();
   activeDay = -1;
  }
 }
 private int activeDay = -1;
 /** *//** Set just the day, on the current month */
 public void setDayActive(int newDay){
  clearDayActive();
  // Set the new one
  if (newDay <= 0)
   dd = new GregorianCalendar().get(Calendar.DAY_OF_MONTH);
  else
   dd = newDay;
  // Now shade the correct square
  Component square = labs[(leadGap + newDay - 1) / 7][(leadGap + newDay - 1) % 7];
  square.setBackground(Color.red);
  square.repaint();
  activeDay = newDay;
 }
 /** *//** For testing, a main program */
 public static void main(String[] av){
  JFrame f = new JFrame("Cal");
  Container c = f.getContentPane();
  c.setLayout(new FlowLayout());
  // for this test driver, hardcode 1995/02/10.
  c.add(new Cal(1995, 2 - 1, 10));
  // and beside it, the current month.
  c.add(new Cal());
  f.pack();
  f.setVisible(true);
 }
}

希望本文所述對大家的java程序設(shè)計有所幫助。

相關(guān)文章

  • springboot整合minio實現(xiàn)文件上傳與下載且支持鏈接永久訪問

    springboot整合minio實現(xiàn)文件上傳與下載且支持鏈接永久訪問

    本文主要介紹了springboot整合minio實現(xiàn)文件上傳與下載且支持鏈接永久訪問,文中通過示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2022-01-01
  • SpringBoot整合thymeleaf 報錯的解決方案

    SpringBoot整合thymeleaf 報錯的解決方案

    這篇文章主要介紹了SpringBoot整合thymeleaf 報錯的解決方案,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2021-08-08
  • Java中常見的語法糖分享

    Java中常見的語法糖分享

    Java語法糖是指Java編譯器在編譯Java源代碼時所做的一些特殊處理,使得Java源代碼在編譯后生成的字節(jié)碼更加簡潔、易讀、易維護(hù),Java 中有許多常見的語法糖,本文給大家列舉了一些常見的例子,需要的朋友可以參考下
    2023-10-10
  • 詳解Java中跳躍表的原理和實現(xiàn)

    詳解Java中跳躍表的原理和實現(xiàn)

    跳躍表(Skip list)是有序鏈表的擴(kuò)展,簡稱跳表,它在原有的有序鏈表上增加了多級索引,通過索引來實現(xiàn)快速查找,實質(zhì)上是一種可以進(jìn)行二分查找的有序鏈表。本文主要為大家介紹了跳躍表的原理和實現(xiàn),需要的可以參考一下
    2022-12-12
  • Java面試題沖刺第二十八天--數(shù)據(jù)庫(5)

    Java面試題沖刺第二十八天--數(shù)據(jù)庫(5)

    這篇文章主要為大家分享了最有價值的三道關(guān)于數(shù)據(jù)庫的面試題,涵蓋內(nèi)容全面,包括數(shù)據(jù)結(jié)構(gòu)和算法相關(guān)的題目、經(jīng)典面試編程題等,感興趣的小伙伴們可以參考一下
    2021-09-09
  • mybatis-plus實體類主鍵策略有3種(小結(jié))

    mybatis-plus實體類主鍵策略有3種(小結(jié))

    這篇文章主要介紹了mybatis-plus實體類主鍵策略有3種(小結(jié)),文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2020-08-08
  • IDEA插件(BindED)之查看class文件的十六進(jìn)制

    IDEA插件(BindED)之查看class文件的十六進(jìn)制

    這篇文章主要介紹了IDEA插件(BindED)之查看class文件的十六進(jìn)制,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教
    2023-12-12
  • Java對象傳遞與返回的細(xì)節(jié)問題詳析

    Java對象傳遞與返回的細(xì)節(jié)問題詳析

    我們知道這是一個核心概念,在Java中總是按值傳遞而不是按引用傳遞,下面這篇文章主要給大家介紹了關(guān)于Java對象傳遞與返回的細(xì)節(jié)問題的相關(guān)資料,需要的朋友可以參考下
    2022-11-11
  • Java8通過CompletableFuture實現(xiàn)異步回調(diào)

    Java8通過CompletableFuture實現(xiàn)異步回調(diào)

    這篇文章主要介紹了Java8通過CompletableFuture實現(xiàn)異步回調(diào),CompletableFuture是Java?8?中新增的一個類,它是對Future接口的擴(kuò)展,下文關(guān)于其更多相關(guān)詳細(xì)介紹需要的小伙伴可以參考一下
    2022-04-04
  • Java線程實現(xiàn)的三種方式詳細(xì)解析

    Java線程實現(xiàn)的三種方式詳細(xì)解析

    這篇文章主要介紹了Java線程實現(xiàn)的三種方式詳細(xì)解析,Java多線程實現(xiàn)方式主要有三種,繼承Thread類、實現(xiàn)Runnable接口、使用ExecutorService、Callable、Future實現(xiàn)有返回結(jié)果的多線程,需要的朋友可以參考下
    2023-12-12

最新評論

军事| 丹棱县| 原阳县| 天门市| 鸡东县| 准格尔旗| 石景山区| 深水埗区| 玉山县| 遵化市| 当阳市| 长垣县| 绍兴市| 江陵县| 延寿县| 和林格尔县| 定陶县| 邯郸县| 临湘市| 内乡县| 泰安市| 澳门| 镇坪县| 招远市| 株洲县| 托克托县| 丰县| 河津市| 嘉荫县| 旺苍县| 太仓市| 巴楚县| 固原市| 莱西市| 长春市| 中宁县| 襄汾县| 东阳市| 珲春市| 乌拉特后旗| 调兵山市|