jdk1.3.1_01.rar


下载后解压,配置好java_home即可用
资源截图
代码片段和文件信息
/*
 * @(#)Animator.java 1.5 99/07/12
 *
 * Copyright (c) 1997 Sun Microsystems Inc. All Rights Reserved.
 *
 * Sun grants you (“Licensee“) a non-exclusive royalty free license to use
 * modify and redistribute this software in source and binary code form
 * provided that i) this copyright notice and license appear on all copies of
 * the software; and ii) Licensee does not utilize the software in a manner
 * which is disparaging to Sun.
 *
 * 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 SUFFERED BY LICENSEE AS A RESULT OF USING MODIFYING
 * OR DISTRIBUTING 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.
 *
 * This software is not designed or intended for use in on-line control of
 * aircraft air traffic aircraft navigation or aircraft communications; or in
 * the design construction operation or maintenance of any nuclear
 * facility. Licensee represents and warrants that it will not use or
 * redistribute the Software for such purposes.
 */

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.5 07/12/99
 */
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 animator contains
    String hrefTarget = null;        // frame target of reference URL if any
    URL hrefURL = null;              // URL link for information if any
 
    static final String sourceLocation = 
                       

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      20573  2001-08-08 14:13  jdk1.3.1_01inappletviewer.exe

     文件      24651  2001-08-08 14:13  jdk1.3.1_01indt_shmem.dll

     文件      20557  2001-08-08 14:13  jdk1.3.1_01indt_socket.dll

     文件      20571  2001-08-08 14:13  jdk1.3.1_01inextcheck.exe

     文件        214  2001-08-08 14:13  jdk1.3.1_01inHtmlConverter.bat

     文件      20573  2001-08-08 14:13  jdk1.3.1_01inidlj.exe

     文件      20554  2001-08-08 14:13  jdk1.3.1_01injar.exe

     文件      20575  2001-08-08 14:13  jdk1.3.1_01injarsigner.exe

     文件      20547  2001-08-08 14:13  jdk1.3.1_01injava.exe

     文件      20568  2001-08-08 14:13  jdk1.3.1_01injavac.exe

     文件      20568  2001-08-08 14:13  jdk1.3.1_01injavadoc.exe

     文件      20568  2001-08-08 14:13  jdk1.3.1_01injavah.exe

     文件      20564  2001-08-08 14:13  jdk1.3.1_01injavap.exe

     文件      20549  2001-08-08 14:13  jdk1.3.1_01injavaw.exe

     文件      20577  2001-08-08 14:13  jdk1.3.1_01injdb.exe

     文件      94275  2001-08-08 14:13  jdk1.3.1_01injdwp.dll

     文件      20571  2001-08-08 14:13  jdk1.3.1_01inkeytool.exe

     文件      20585  2001-08-08 14:13  jdk1.3.1_01in
ative2ascii.exe

     文件      20553  2001-08-08 14:13  jdk1.3.1_01inoldjava.exe

     文件      20570  2001-08-08 14:13  jdk1.3.1_01inoldjavac.exe

     文件      20555  2001-08-08 14:13  jdk1.3.1_01inoldjavaw.exe

     文件      20569  2001-08-08 14:13  jdk1.3.1_01inoldjdb.exe

     文件      20577  2001-08-08 14:13  jdk1.3.1_01inpolicytool.exe

     文件      20559  2001-08-08 14:13  jdk1.3.1_01in
mic.exe

     文件      20565  2001-08-08 14:13  jdk1.3.1_01in
mid.exe

     文件      20577  2001-08-08 14:13  jdk1.3.1_01in
miregistry.exe

     文件      20576  2001-08-08 14:13  jdk1.3.1_01inserialver.exe

     文件      20592  2001-08-08 14:13  jdk1.3.1_01in nameserv.exe

     文件      20563  2001-08-08 14:13  jdk1.3.1_01inunregbean.exe

     文件       4078  2001-08-08 14:13  jdk1.3.1_01COPYRIGHT

............此处省略2757个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)