锘??xml version="1.0" encoding="utf-8" standalone="yes"?>成人网男人的天堂,久久久国产视频,亚洲国内精品在线http://www.aygfsteel.com/marswj/category/5272.htmlzh-cnTue, 27 Feb 2007 12:39:11 GMTTue, 27 Feb 2007 12:39:11 GMT60- eclipse plugin for J2EEhttp://www.aygfsteel.com/marswj/archive/2005/12/07/22916.htmlmarswjmarswjWed, 07 Dec 2005 13:45:00 GMThttp://www.aygfsteel.com/marswj/archive/2005/12/07/22916.htmlhttp://www.aygfsteel.com/marswj/comments/22916.htmlhttp://www.aygfsteel.com/marswj/archive/2005/12/07/22916.html#Feedback0http://www.aygfsteel.com/marswj/comments/commentRss/22916.htmlhttp://www.aygfsteel.com/marswj/services/trackbacks/22916.htmlMyEclipse
http://www.myeclipseide.com/
Eclipse Web Tools Platform (WTP)
http://www.eclipse.org/webtools/
BEA Workshop Studio(NitroX)
http://www.m7.com/
Lomboz
http://www.objectlearn.com/index.jsp

]]>- 鍏蟲敞欏圭洰http://www.aygfsteel.com/marswj/archive/2005/12/01/22167.htmlmarswjmarswjThu, 01 Dec 2005 14:30:00 GMThttp://www.aygfsteel.com/marswj/archive/2005/12/01/22167.htmlhttp://www.aygfsteel.com/marswj/comments/22167.htmlhttp://www.aygfsteel.com/marswj/archive/2005/12/01/22167.html#Feedback0http://www.aygfsteel.com/marswj/comments/commentRss/22167.htmlhttp://www.aygfsteel.com/marswj/services/trackbacks/22167.html
http://ws.apache.org/axis2/
Jetspeed-2
http://portals.apache.org/jetspeed-2/
eclipse
http://eclipse.org/eclipse/index.html
Business Intelligence and Reporting Tools
http://eclipse.org/birt/
MyEclipse Enterprise Workbench
http://www.myeclipseide.com/
WebWork
http://www.opensymphony.com/webwork/
PostgreSQL
http://www.postgresql.org/
Geronimo
http://geronimo.apache.org/

]]> - 綆鍗曠殑閫愯璇誨彇鏂囨湰鏂囦歡鐨勬柟娉?/title>http://www.aygfsteel.com/marswj/archive/2005/11/30/22034.htmlmarswjmarswjWed, 30 Nov 2005 13:08:00 GMThttp://www.aygfsteel.com/marswj/archive/2005/11/30/22034.htmlhttp://www.aygfsteel.com/marswj/comments/22034.htmlhttp://www.aygfsteel.com/marswj/archive/2005/11/30/22034.html#Feedback0http://www.aygfsteel.com/marswj/comments/commentRss/22034.htmlhttp://www.aygfsteel.com/marswj/services/trackbacks/22034.html 1

/**//* 鏂囦歡鍚?TestReadFile.java 鍒涘緩鏃ユ湡:2005-11-30 */
2
3
package cn.vcol.file;
4
5
import java.io.BufferedReader;
6
import java.io.FileNotFoundException;
7
import java.io.FileReader;
8
import java.io.IOException;
9
10
/** *//**
11
* @author blog.vcol.cn
12
*/
13
public class TestReadFile
14

{
15
public static void main(String[] args)
16
{
17
String FilePath = "D:/test.txt";
18
FileReader fr = null;
19
BufferedReader br = null;
20
StringBuffer sBuffer = new StringBuffer();
21
try
22
{
23
try
24
{
25
fr = new FileReader(FilePath);// 寤虹珛FileReader瀵硅薄錛屽茍瀹炰緥鍖栦負fr
26
}
27
catch (FileNotFoundException e)
28
{
29
e.printStackTrace();
30
}
31
br = new BufferedReader(fr);// 寤虹珛BufferedReader瀵硅薄錛屽茍瀹炰緥鍖栦負br
32
String Line = br.readLine();// 浠庢枃浠惰鍙栦竴琛屽瓧絎︿覆
33
// 鍒ゆ柇璇誨彇鍒扮殑瀛楃涓叉槸鍚︿笉涓虹┖
34
while (Line != null)
35
{
36
sBuffer.append(Line);
37
sBuffer.append("\n");
38
Line = br.readLine();// 浠庢枃浠朵腑緇х畫璇誨彇涓琛屾暟鎹?/SPAN>
39
}
40
}
41
catch (IOException e)
42
{
43
e.printStackTrace();
44
}
45
finally
46
{
47
try
48
{
49
if (br != null)
50
br.close();// 鍏抽棴BufferedReader瀵硅薄
51
if (fr != null)
52
fr.close();// 鍏抽棴鏂囦歡
53
}
54
catch (IOException e)
55
{
56
e.printStackTrace();
57
}
58
}
59
// 杈撳嚭璇誨彇鐨勭粨鏋?/SPAN>
60
System.out.println(sBuffer);
61
}
62
}
63

]]> - 涓涓畝鍗曠殑鍛ㄦ湡鎬imerhttp://www.aygfsteel.com/marswj/archive/2005/11/25/21454.htmlmarswjmarswjFri, 25 Nov 2005 12:32:00 GMThttp://www.aygfsteel.com/marswj/archive/2005/11/25/21454.htmlhttp://www.aygfsteel.com/marswj/comments/21454.htmlhttp://www.aygfsteel.com/marswj/archive/2005/11/25/21454.html#Feedback0http://www.aygfsteel.com/marswj/comments/commentRss/21454.htmlhttp://www.aygfsteel.com/marswj/services/trackbacks/21454.html 1

/**//* 鏂囦歡鍚?EggTimer.java 鍒涘緩鏃ユ湡:2005-11-25 */
2
3
package cn.vcol.timer;
4
5
import java.text.SimpleDateFormat;
6
import java.util.Calendar;
7
import java.util.Date;
8
import java.util.Timer;
9
import java.util.TimerTask;
10
11
/** *//**
12
* @author blog.vcol.cn
13
*/
14
public class EggTimer
15

{
16
private final Timer timer = new Timer();
17
18
private void start()
19
{
20
long period = 2 * 60 * 1000;// 鍛ㄦ湡涓?鍒嗛挓
21
timer.schedule(new TimerTask()
22
{
23
public void run()
24
{
25
System.out.println("鏈榪愯浜?" + getFormatDate(new Date()));
26
playSound();
27
}
28
29
private void playSound()
30
{
31
System.out.println("Your egg is ready!");
32
// Start a new thread to play a sound
33
}
34
}, getDateTime(), period);
35
}
36
37
public static void main(String[] args)
38
{
39
EggTimer eggTimer = new EggTimer();
40
eggTimer.start();
41
}
42
43
/** *//**
44
* 棣栨榪愯鐨勬椂闂?BR>45
* @return
46
*/
47
private Date getDateTime()
48
{
49
Calendar calendar = Calendar.getInstance();
50
Date date = new Date();
51
System.out.println("紼嬪簭寮濮嬩簬:" + getFormatDate(date));
52
calendar.setTime(date);
53
// 璁懼畾鏃墮棿
54
calendar.setFirstDayOfWeek(Calendar.MONDAY);// 璁懼畾鏄熸湡涓涓轟竴涓槦鏈熺殑絎竴澶?/SPAN>
55
calendar.set(Calendar.DAY_OF_WEEK, Calendar.SUNDAY);// 鏈懆鐨勬槦鏈熸棩(鐩稿浜庣▼搴忚繍琛屾椂)
56
calendar.set(Calendar.HOUR_OF_DAY, 14);
57
calendar.set(Calendar.MINUTE, 57);
58
calendar.set(Calendar.SECOND, 0);
59
//
60
System.out.println("棣栨榪愯浜?" + getFormatDate(calendar.getTime()));
61
return calendar.getTime();
62
}
63
64
/** *//**
65
* 鏍煎紡鍖栨棩鏈?BR>66
* @param date
67
* @return
68
*/
69
private String getFormatDate(Date date)
70
{
71
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
72
return sdf.format(date);
73
}
74
}
75

]]>
主站蜘蛛池模板:
边坝县|
嘉定区|
额尔古纳市|
永寿县|
廊坊市|
静海县|
明星|
黄龙县|
永安市|
云浮市|
罗甸县|
万源市|
防城港市|
布尔津县|
沈阳市|
招远市|
红桥区|
黑龙江省|
兴隆县|
左权县|
比如县|
荣昌县|
江西省|
报价|
德化县|
哈巴河县|
海阳市|
玛曲县|
铜山县|
美姑县|
库尔勒市|
邹平县|
西畴县|
卢龙县|
无为县|
白玉县|
小金县|
临沧市|
岚皋县|
临西县|
昭苏县|