WeatherWizard JApplet : Applet程序 « 开发相关 « Java 教程

En
Java 教程
1. 语言基础
2. 数据类型
3. 操作符
4. 流程控制
5. 类定义
6. 开发相关
7. 反射
8. 正则表达式
9. 集合
10. 线
11. 文件
12. 泛型
13. 本土化
14. Swing
15. Swing事件
16. 二维图形
17. SWT
18. SWT 二维图形
19. 网络
20. 数据库
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web服务SOA
27. EJB3
28. Spring
29. PDF
30. 电子邮件
31. 基于J2ME
32. J2EE应用
33. XML
34. 设计模式
35. 日志
36. 安全
37. Apache工具
38. 蚂蚁编译
39. JUnit单元测试
Java
Java 教程 » 开发相关 » Applet程序 
6. 28. 10. WeatherWizard JApplet
/*
 * Copyright (c) 1995 - 2008 Sun Microsystems, Inc.  All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 *   - Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 *
 *   - Redistributions in binary form must reproduce the above copyright
 *     notice, this list of conditions and the following disclaimer in the
 *     documentation and/or other materials provided with the distribution.
 *
 *   - Neither the name of Sun Microsystems nor the names of its
 *     contributors may be used to endorse or promote products derived
 *     from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

import java.awt.AlphaComposite;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Component;
import java.awt.Composite;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.font.FontRenderContext;
import java.awt.geom.Rectangle2D;
import java.awt.image.BufferedImage;
import java.net.URL;

import javax.imageio.ImageIO;
import javax.swing.JApplet;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JSlider;
import javax.swing.UIManager;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;

public class WeatherWizard extends JApplet implements ChangeListener {

  WeatherPainter painter;

  public void init() {
    /* Turn off metal's use of bold fonts */
    UIManager.put("swing.boldMetal", Boolean.FALSE);
  }

  public void start() {
    initComponents();
  }

  public static void main(String[] args) {
    JFrame f = new JFrame("Weather Wizard");
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    JApplet ap = new WeatherWizard();
    ap.init();
    ap.start();
    f.add("Center", ap);
    f.pack();
    f.setVisible(true);

  }

  private BufferedImage loadImage(String name) {
    String imgFileName = "images/weather-" + name + ".png";
    URL url = WeatherWizard.class.getResource(imgFileName);
    BufferedImage img = null;
    try {
      img = ImageIO.read(url);
    catch (Exception e) {
    }
    return img;
  }

  public void initComponents() {

    setLayout(new BorderLayout());

    JPanel p = new JPanel();
    p.add(new JLabel("Temperature:"));
    JSlider tempSlider = new JSlider(2010065);
    tempSlider.setMinorTickSpacing(5);
    tempSlider.setMajorTickSpacing(20);
    tempSlider.setPaintTicks(true);
    tempSlider.setPaintLabels(true);
    tempSlider.addChangeListener(this);
    p.add(tempSlider);
    add("North", p);

    painter = new WeatherPainter();
    painter.sun = loadImage("sun");
    painter.cloud = loadImage("cloud");
    painter.rain = loadImage("rain");
    painter.snow = loadImage("snow");
    painter.setTemperature(65);
    p.add("Center", painter);

  }

  public void stateChanged(ChangeEvent e) {
    JSlider slider = (JSlidere.getSource();
    painter.setTemperature(slider.getValue());
  }
}

class WeatherPainter extends Component {

  int temperature = 65;

  String[] conditions = "Snow""Rain""Cloud""Sun" };

  BufferedImage snow = null;

  BufferedImage rain = null;

  BufferedImage cloud = null;

  BufferedImage sun = null;

  Color textColor = Color.yellow;

  String condStr = "";

  String feels = "";

  Composite alpha0 = null, alpha1 = null;

  BufferedImage img0 = null, img1 = null;

  void setTemperature(int temp) {
    temperature = temp;
    repaint();
  }

  public Dimension getPreferredSize() {
    return new Dimension(450125);
  }

  void setupText(String s1, String s2) {
    if (temperature <= 32) {
      textColor = Color.blue;
      feels = "Freezing";
    else if (temperature <= 50) {
      textColor = Color.green;
      feels = "Cold";
    else if (temperature <= 65) {
      textColor = Color.yellow;
      feels = "Cool";
    else if (temperature <= 75) {
      textColor = Color.orange;
      feels = "Warm";
    else {
      textColor = Color.red;
      feels = "Hot";
    }
    condStr = s1;
    if (s2 != null) {
      condStr += "/" + s2;
    }
  }

  void setupImages(BufferedImage i0) {
    alpha0 = null;
    alpha1 = null;
    img0 = i0;
    img1 = null;
  }

  void setupImages(int min, int max, BufferedImage i0, BufferedImage i1) {
    float alpha = (max - temperature(float) (max - min);
    alpha0 = AlphaComposite.getInstance(AlphaComposite.SRC_OVER, alpha);
    alpha1 = AlphaComposite.getInstance(AlphaComposite.SRC_OVER, - alpha);
    img0 = i0;
    img1 = i1;

  }

  void setupWeatherReport() {
    if (temperature <= 32) {
      setupImages(snow);
      setupText("Snow"null);
    else if (temperature <= 40) {
      setupImages(3240, snow, rain);
      setupText("Snow""Rain");
    else if (temperature <= 50) {
      setupImages(rain);
      setupText("Rain"null);
    else if (temperature <= 58) {
      setupImages(5058, rain, cloud);
      setupText("Rain""Cloud");
    else if (temperature <= 65) {
      setupImages(cloud);
      setupText("Cloud"null);
    else if (temperature <= 75) {
      setupImages(6575, cloud, sun);
      setupText("Cloud""Sun");
    else {
      setupImages(sun);
      setupText("Sun"null);
    }
  }

  public void paint(Graphics g) {
    Graphics2D g2 = (Graphics2Dg;
    Dimension size = getSize();
    Composite origComposite;

    setupWeatherReport();

    origComposite = g2.getComposite();
    if (alpha0 != null)
      g2.setComposite(alpha0);
    g2.drawImage(img0, 00, size.width, size.height, 00, img0.getWidth(null), img0
        .getHeight(null)null);
    if (img1 != null) {
      if (alpha1 != null)
        g2.setComposite(alpha1);
      g2.drawImage(img1, 00, size.width, size.height, 00, img1.getWidth(null), img1
          .getHeight(null)null);
    }
    g2.setComposite(origComposite);

    // Freezing, Cold, Cool, Warm, Hot,
    // Blue, Green, Yellow, Orange, Red
    Font font = new Font("Serif", Font.PLAIN, 36);
    g.setFont(font);

    String tempString = feels + " " + temperature + "F";
    FontRenderContext frc = ((Graphics2Dg).getFontRenderContext();
    Rectangle2D boundsTemp = font.getStringBounds(tempString, frc);
    Rectangle2D boundsCond = font.getStringBounds(condStr, frc);
    int wText = Math.max((intboundsTemp.getWidth()(intboundsCond.getWidth());
    int hText = (intboundsTemp.getHeight() (intboundsCond.getHeight();
    int rX = (size.width - wText2;
    int rY = (size.height - hText2;

    g.setColor(Color.LIGHT_GRAY);
    g2.fillRect(rX, rY, wText, hText);

    g.setColor(textColor);
    int xTextTemp = rX - (intboundsTemp.getX();
    int yTextTemp = rY - (intboundsTemp.getY();
    g.drawString(tempString, xTextTemp, yTextTemp);

    int xTextCond = rX - (intboundsCond.getX();
    int yTextCond = rY - (intboundsCond.getY() (intboundsTemp.getHeight();
    g.drawString(condStr, xTextCond, yTextCond);

  }
}
6. 28. Applet程序
6. 28. 1. Applet程序
6. 28. 2. 一个真正的Applet程序
6. 28. 3. 添加JButton到JApplet
6. 28. 4. 访问applet的参数
6. 28. 5. 一个Swing为基础的程序骨架
6. 28. 6. Swing程序
6. 28. 7. 一个简单的Swing为基础的程序
6. 28. 8. 迷你Appletviewer
6. 28. 9. 战术游戏
6. 28. 10. WeatherWizard JApplet
6. 28. 11. 改变一个applet的背景颜色
6. 28. 12. 读取一个applet参数
6. 28. 13. 一个applet到JavaScript的方法调用
6. 28. 14. 参数传递到Java小程序
6. 28. 15. 在浏览器显示信息状态栏
6. 28. 16. Applet访问系统属性
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.