一区二区三区在线-一区二区三区亚洲视频-一区二区三区亚洲-一区二区三区午夜-一区二区三区四区在线视频-一区二区三区四区在线免费观看

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|

服務器之家 - 編程語言 - JAVA教程 - java實現變更文件查詢的方法

java實現變更文件查詢的方法

2019-12-26 13:36罪惡的花生 JAVA教程

這篇文章主要介紹了java實現變更文件查詢的方法,可通過java查詢文件最后修改時間的方法實現查找變更文件的功能,具有一定參考借鑒價值,需要的朋友可以參考下

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

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

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
/*
 *
 * 更改所生成文件模板為
 * 窗口 > 首選項 > 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程序設計有所幫助。

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 好湿好紧好多水c | 校园情射 | 色婷婷久久综合中文久久一本` | 3344在线看片 | 99视频在线看 | 天天狠天天透 | 日韩精品欧美高清区 | www.久久av.com | 睡男神的这件小事小说在线阅读 | 成人性生交大片免费看软件 | 国产精品一区二区三区久久 | 秀婷程仪公欲息肉婷在线观看 | 大ji吧快给我别停受不了视频 | 欧美性白人顶级hd | 国产麻豆流白浆在线观看 | 国产精品第一区揄拍 | 国产一区二区三区水野朝阳 | 免费369看片入口 | 欧美久草在线 | 日本www午夜色在线视频 | 国产精品日韩欧美在线 | 免费人成黄页在线观看69 | 欧美区在线 | 俄罗斯一级淫片 | 国产女同精品 | avtt在线播放 | 男女性gif抽搐出入视频 | chinesexxxxhd人妖 chinesespanking调教 | 91精品国产91久久久久 | 国产精品成人一区二区1 | 国产老村长足疗店对白 | 亚洲国产欧美在线看片 | 亚洲视频在线一区二区 | 天天操天天舔 | 国产精品成人麻豆专区 | 乌克兰17一18处交 | futa百合高肉全h | 大陆国产vs国产对白 | 高清国产激情视频在线观看 | 9久热久爱免费精品视频在线观看 | 成人榴莲视频 |