5

已弃用 java.awt 的类 Windows 中的方法show();。我可以用什么代替?

package adventure;
import java.awt.*;

import java.awt.image.*;
import java.awt.event.*;
import java.net.URL;
import java.net.MalformedURLException;
import java.io.*;
import java.applet.*;
// Infogar testkommentar mvh Holger 2012-06-20 kl 19.03
public class Adventure extends Frame  {
    private static final long serialVersionUID=100L;
    public Adventure() {        
    setSize(850, 440);    
    World world = new DungeonWorld ( this );        

    Person me = new Person( world, "You", null );    
    show();
    me.goTo("Dungeon");     
    add( new Player( world, me ) );    
    addWindowListener(new MyWindowAdapter ());    
    }

    class MyWindowAdapter extends WindowAdapter {

    public void windowClosing (WindowEvent e) {
        System.exit(0);
    }
    }


    // Load an image from the net, making sure it has already been
    // loaded when the method returns
    public Image loadPicture ( String imageName ) {
    Image im = null;

    // Load the image from the net
    try {
        URL imageSource = new URL( "http://www...xxx/"
                       + imageName );

        try {
        im = createImage( (ImageProducer) imageSource.getContent());
        } catch (IOException e) {}

    } catch (MalformedURLException e ) { }

    // Wait to ensure that the image is loaded
    MediaTracker imageTracker = new MediaTracker( this );
    imageTracker.addImage( im, 0 );
    try {
        imageTracker.waitForID( 0 );
    }
    catch( InterruptedException e ) { }

    return im;
    }


    // Load and play a sound from /usr/local/hacks/sounds/

    public void playSound (String name) {
    URL u = null;

    try {
        u = new URL("file:" +  "/usr/local/hacks/sounds/" + name + ".au");
    } catch (MalformedURLException e ) { }

    AudioClip a = Applet.newAudioClip(u);
    a.play();
    }

    public static void main (String[] args) {       
    System.out.println("test"); 
      new Adventure();
    }
}
4

2 回答 2

23

让我们阅读 Java API Window#show()这里

@Deprecated
public void show()

已弃用。从 JDK 版本 1.5 开始,由setVisible(boolean).

使窗口可见。如果 Window 和/或其所有者还不能显示,则两者都可以显示。窗口将在可见之前进行验证。如果窗口已经可见,这会将窗口带到前面。

所以你应该使用Window#setVisible(boolean)- 供show()使用setVisible(true)

编辑

在某些环境中,只是替换show()更改setVisible(true)了应用程序的行为。当您编写Window覆盖的子类时会发生这种情况show()(对于 也是如此hide())。

因此,在您的代码示例setVisible(true)中,与show(). 但总的来说,只要确定,没有人会覆盖show()在使用setVisible(true). 在这种情况下,您也必须更改覆盖的方法。

于 2012-06-21T08:14:37.007 回答
5

如果您检查 API,您将看到:

void show()       

已弃用。从 JDK 版本 1.5 开始,由setVisible(boolean).

于 2012-06-21T08:14:37.043 回答