資源簡介
Java網絡天氣預報程序,一個天氣軟件,提供未來5天的天氣預報同時提供當天的生活小提示。首次運行會產生一個 city.txt 的UTF編碼文件紀錄城市信息。軟件無需安裝。可以在任何支持jre 1.6 以上的環境中運行。這個軟件一是因為練手(小生正在學習中),二來,我喜歡簡單好用的東西,比方菜刀就是菜刀,開山刀就是開山刀,反正瑞士軍刀做這兩件事都不好使,哈哈。

代碼片段和文件信息
/*
?*?AboutJD.java
?*?Download?by?http://www.codesc.net
?*?Created?on?2007年9月4日?上午9:51
?*
?*?To?change?this?template?choose?Tools?|?Template?Manager
?*?and?open?the?template?in?the?editor.
?*/
package?weather;
import?java.awt.*;
import?javax.swing.*;
import?java.awt.event.*;
/**
?*
?*?@author?yuhui_bear
?*/
class?AboutJD?extends?JDialog?{
????AboutPanel?mp?;
????public?AboutJD(Jframe?jf??String?title?String?label??String?information)?{
????????super(jftitletrue);
????????mp?=?new?AboutPanel(label?information?null?this);???????
????????showAbout();
????}
????public?AboutJD(Jframe?jf??String?title?String?label??String?information??Icon?icon1){
????????super(jftitle?true);
????????mp?=?new?AboutPanel(label?information?icon1?this);
????????showAbout();
????}????
????/**?add?new?component?to?the?main?frame?
?????*this?frame?has?been?set?to?BorderLayout??and?SOUTH?&?Center?occupied
?????*/
????public?void?showAbout(){
????????this.setSize(340130);
????????this.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
????????Toolkit.getDefaultToolkit().beep();
????????Dimension?screenSize?=?Toolkit.getDefaultToolkit().getScreenSize();
????????this.setLocation(?(int)(screenSize.width?/?3?+?30)?(int)(screenSize.height?/?3?+30));
????????this.add(mp);
????????this.setVisible(true);
????}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件??????98292??2007-09-09?21:50??codesc.net\weather_Code\QierWeather0.1.jar
?????文件????????862??2015-01-27?11:15??codesc.net\weather_Code\readme.txt
?????文件???????1358??2015-01-27?11:16??codesc.net\weather_Code\weather_Code\AboutJD.java
?????文件???????6180??2007-09-08?22:27??codesc.net\weather_Code\weather_Code\AboutPanel.form
?????文件???????3533??2007-09-08?22:27??codesc.net\weather_Code\weather_Code\AboutPanel.java
?????文件????????459??2015-01-27?11:16??codesc.net\weather_Code\weather_Code\Main.java
?????文件??????48612??2007-09-08?22:27??codesc.net\weather_Code\weather_Code\mainfr
?????文件??????40647??2015-01-27?11:16??codesc.net\weather_Code\weather_Code\mainfr
?????文件???????1104??2015-01-27?11:16??codesc.net\weather_Code\weather_Code\Timer.java
?????文件???????3659??2015-01-27?11:16??codesc.net\weather_Code\weather_Code\Updater.java
?????文件???????6128??2015-01-27?11:16??codesc.net\weather_Code\weather_Code\WebFilter.java
?????目錄??????????0??2015-01-27?11:14??codesc.net\weather_Code\weather_Code
?????目錄??????????0??2015-01-27?11:15??codesc.net\weather_Code
?????目錄??????????0??2015-01-27?11:14??codesc.net
-----------?---------??----------?-----??----
???????????????210834????????????????????14
評論
共有 條評論