资源简介
jdk1.4老版的JDK,不常用了,有特殊需要的可以下载。
代码片段和文件信息
/*
* Copyright (c) 2003 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.
*
* -Redistribution in binary form must reproduct 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 Inc. or the names of contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* This software is provided “AS IS“ without a warranty of any kind. ALL
* EXPRESS OR IMPLIED CONDITIONS REPRESENTATIONS AND WARRANTIES INCLUDING
* ANY IMPLIED WARRANTY OF MERCHANTABILITY FITNESS FOR A PARTICULAR PURPOSE
* OR NON-INFRINGEMENT ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT
* BE LIABLE FOR ANY DAMAGES OR LIABILITIES SUFFERED BY LICENSEE AS A RESULT
* OF OR RELATING TO USE MODIFICATION OR DISTRIBUTION OF THE SOFTWARE OR ITS
* DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST
* REVENUE PROFIT OR DATA OR FOR DIRECT INDIRECT SPECIAL CONSEQUENTIAL
* INCIDENTAL OR PUNITIVE DAMAGES HOWEVER CAUSED AND REGARDLESS OF THE THEORY
* OF LIABILITY ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE EVEN
* IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
*
* You acknowledge that Software is not designed licensed or intended for
* use in the design construction operation or maintenance of any nuclear
* facility.
*/
/*
* @(#)Animator.java 1.9 03/01/23
*/
import java.awt.*;
import java.awt.event.*;
import java.applet.applet;
import java.applet.AudioClip;
import java.util.Vector;
import java.util.Hashtable;
import java.util.Enumeration;
import java.net.URL;
import java.net.MalformedURLException;
import java.util.List;
import java.util.ArrayList;
import java.util.Iterator;
/**
* An applet that plays a sequence of images as a loop or a one-shot.
* Can have a soundtrack and/or sound effects tied to individual frames.
* See the plets/applets/Animator/“>Animator
* home page for details and updates.
*
* @author Herb Jellinek
* @version 1.9 01/23/03
*/
public class Animator extends applet implements Runnable MouseListener {
int appWidth = 0; // Animator width
int appHeight = 0; // Animator height
Thread engine = null; // Thread animating the images
boolean userPause = false; // True if thread currently paused by user
boolean loaded = false; // Can we paint yet?
boolean error = false; // Was there an initialization error?
Animation animation = null; // Animation this a
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-03-12 21:03 jdk1.4.2\
目录 0 2011-03-12 21:03 jdk1.4.2\bin\
文件 28803 2003-11-19 17:27 jdk1.4.2\bin\ap
文件 32881 2003-11-19 17:48 jdk1.4.2\bin\beanreg.dll
文件 28801 2003-11-19 17:27 jdk1.4.2\bin\extcheck.exe
文件 16384 2003-11-19 17:48 jdk1.4.2\bin\HtmlConverter.exe
文件 28803 2003-11-19 17:27 jdk1.4.2\bin\idlj.exe
文件 28784 2003-11-19 17:27 jdk1.4.2\bin\jar.exe
文件 28805 2003-11-19 17:27 jdk1.4.2\bin\jarsigner.exe
文件 24681 2003-11-19 17:27 jdk1.4.2\bin\java.exe
文件 28798 2003-11-19 17:27 jdk1.4.2\bin\javac.exe
文件 28804 2003-11-19 17:27 jdk1.4.2\bin\javadoc.exe
文件 28798 2003-11-19 17:27 jdk1.4.2\bin\javah.exe
文件 28794 2003-11-19 17:27 jdk1.4.2\bin\javap.exe
文件 28779 2003-11-19 17:27 jdk1.4.2\bin\javaw.exe
文件 28807 2003-11-19 17:27 jdk1.4.2\bin\jdb.exe
文件 28801 2003-11-19 17:27 jdk1.4.2\bin\keytool.exe
文件 28797 2003-11-19 17:27 jdk1.4.2\bin\kinit.exe
文件 28797 2003-11-19 17:27 jdk1.4.2\bin\klist.exe
文件 28795 2003-11-19 17:27 jdk1.4.2\bin\ktab.exe
文件 28815 2003-11-19 17:27 jdk1.4.2\bin\native2ascii.exe
文件 28820 2003-11-19 17:27 jdk1.4.2\bin\orbd.exe
文件 65651 2003-11-19 17:48 jdk1.4.2\bin\packager.exe
文件 28807 2003-11-19 17:27 jdk1.4.2\bin\policytool.exe
文件 28789 2003-11-19 17:27 jdk1.4.2\bin\rmic.exe
文件 28795 2003-11-19 17:27 jdk1.4.2\bin\rmid.exe
文件 28807 2003-11-19 17:27 jdk1.4.2\bin\rmiregistry.exe
文件 28806 2003-11-19 17:27 jdk1.4.2\bin\serialver.exe
文件 28832 2003-11-19 17:27 jdk1.4.2\bin\servertool.exe
文件 28822 2003-11-19 17:27 jdk1.4.2\bin\tnameserv.exe
文件 4519 2003-11-19 23:16 jdk1.4.2\COPYRIGHT
............此处省略1631个文件信息
- 上一篇:Z-TEK USB 驱动
- 下一篇:统计学习方法
评论
共有 条评论