资源简介
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
评论
共有 条评论