• 大小: 40.58MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-06-22
  • 语言: 其他
  • 标签: jdk  

资源简介

老的项目很有可能需要老的jdk,我在公司用的是jdk1.4,发出来让大家也用

资源截图

代码片段和文件信息

/*
 * 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  2018-12-03 09:39  jdk4\
     目录           0  2018-12-03 09:39  jdk4\bin\
     文件       45187  2005-01-15 12:04  jdk4\bin\appletviewer.exe
     文件       32881  2005-01-15 12:24  jdk4\bin\beanreg.dll
     文件       20595  2005-01-15 11:57  jdk4\bin\dt_socket.dll
     文件       45185  2005-01-15 12:04  jdk4\bin\extcheck.exe
     文件       16384  2005-01-15 12:24  jdk4\bin\HtmlConverter.exe
     文件       45187  2005-01-15 12:04  jdk4\bin\idlj.exe
     文件       45168  2005-01-15 12:04  jdk4\bin\jar.exe
     文件       45189  2005-01-15 12:04  jdk4\bin\jarsigner.exe
     文件       45161  2005-01-15 12:04  jdk4\bin\java.exe
     文件       45182  2005-01-15 12:04  jdk4\bin\javac.exe
     文件       45188  2005-01-15 12:04  jdk4\bin\javadoc.exe
     文件       45182  2005-01-15 12:04  jdk4\bin\javah.exe
     文件       45178  2005-01-15 12:04  jdk4\bin\javap.exe
     文件       45163  2005-01-15 12:04  jdk4\bin\javaw.exe
     文件       45191  2005-01-15 12:04  jdk4\bin\jdb.exe
     文件       45185  2005-01-15 12:04  jdk4\bin\keytool.exe
     文件       45181  2005-01-15 12:04  jdk4\bin\kinit.exe
     文件       45181  2005-01-15 12:04  jdk4\bin\klist.exe
     文件       45179  2005-01-15 12:04  jdk4\bin\ktab.exe
     文件       45199  2005-01-15 12:04  jdk4\bin\native2ascii.exe
     文件       45204  2005-01-15 12:04  jdk4\bin\orbd.exe
     文件       65651  2005-01-15 12:24  jdk4\bin\packager.exe
     文件       45191  2005-01-15 12:04  jdk4\bin\policytool.exe
     文件       45173  2005-01-15 12:04  jdk4\bin\rmic.exe
     文件       45179  2005-01-15 12:04  jdk4\bin\rmid.exe
     文件       45191  2005-01-15 12:04  jdk4\bin\rmiregistry.exe
     文件       45190  2005-01-15 12:04  jdk4\bin\serialver.exe
     文件       45216  2005-01-15 12:04  jdk4\bin\servertool.exe
     文件       45206  2005-01-15 12:04  jdk4\bin\tnameserv.exe
............此处省略1631个文件信息

评论

共有 条评论