当前位置: 技术问答>java相关
为什么我的JInternalFrame不能看到?请帮忙解决!
来源: 互联网 发布时间:2015-06-23
本文导语: code 如下: import java.awt.*; import java.awt.event.*; import java.beans.*; import javax.swing.*; import javax.swing.event.*; public class Test extends JApplet { JDesktopPane desktopPane = new JDesktopPane(); public void init() { Container contentPane = ...
code 如下:
import java.awt.*;
import java.awt.event.*;
import java.beans.*;
import javax.swing.*;
import javax.swing.event.*;
public class Test extends JApplet {
JDesktopPane desktopPane = new JDesktopPane();
public void init() {
Container contentPane = getContentPane();
contentPane.add(desktopPane, BorderLayout.CENTER);
desktopPane.setLayout(new FlowLayout());
JInternalFrame jif = new JInternalFrame(
"An Internal Frame", // title
false, // resizable
true, // closable
true, // maximizable
true); // iconifiable
jif.setPreferredSize(new Dimension(300, 250));
jif.addInternalFrameListener(new Listener(this));
desktopPane.add(jif);
}
}
class Listener implements InternalFrameListener {
private JApplet applet;
public Listener(JApplet applet) {
this.applet = applet;
}
public void internalFrameActivated(InternalFrameEvent e) {
applet.showStatus("frame activated");
}
public void internalFrameClosed(InternalFrameEvent e) {
applet.showStatus("frame closed");
}
public void internalFrameClosing(InternalFrameEvent e) {
applet.showStatus("frame closing");
}
public void internalFrameDeactivated(InternalFrameEvent e) {
applet.showStatus("frame deactivated");
}
public void internalFrameDeiconified(InternalFrameEvent e) {
applet.showStatus("frame deiconified");
}
public void internalFrameIconified(InternalFrameEvent e) {
applet.showStatus("frame iconified");
}
public void internalFrameOpened(InternalFrameEvent e) {
applet.showStatus("frame opened");
}
private void sleepForABit() {
try {
Thread.currentThread().sleep(5000);
}
catch(InterruptedException e) {
e.printStackTrace();
}
}
}
运行后,JApplet可以看到,但没有JInternalFrame,什么原因?
import java.awt.*;
import java.awt.event.*;
import java.beans.*;
import javax.swing.*;
import javax.swing.event.*;
public class Test extends JApplet {
JDesktopPane desktopPane = new JDesktopPane();
public void init() {
Container contentPane = getContentPane();
contentPane.add(desktopPane, BorderLayout.CENTER);
desktopPane.setLayout(new FlowLayout());
JInternalFrame jif = new JInternalFrame(
"An Internal Frame", // title
false, // resizable
true, // closable
true, // maximizable
true); // iconifiable
jif.setPreferredSize(new Dimension(300, 250));
jif.addInternalFrameListener(new Listener(this));
desktopPane.add(jif);
}
}
class Listener implements InternalFrameListener {
private JApplet applet;
public Listener(JApplet applet) {
this.applet = applet;
}
public void internalFrameActivated(InternalFrameEvent e) {
applet.showStatus("frame activated");
}
public void internalFrameClosed(InternalFrameEvent e) {
applet.showStatus("frame closed");
}
public void internalFrameClosing(InternalFrameEvent e) {
applet.showStatus("frame closing");
}
public void internalFrameDeactivated(InternalFrameEvent e) {
applet.showStatus("frame deactivated");
}
public void internalFrameDeiconified(InternalFrameEvent e) {
applet.showStatus("frame deiconified");
}
public void internalFrameIconified(InternalFrameEvent e) {
applet.showStatus("frame iconified");
}
public void internalFrameOpened(InternalFrameEvent e) {
applet.showStatus("frame opened");
}
private void sleepForABit() {
try {
Thread.currentThread().sleep(5000);
}
catch(InterruptedException e) {
e.printStackTrace();
}
}
}
运行后,JApplet可以看到,但没有JInternalFrame,什么原因?
|
在这里加入jif.show();
desktopPane.add(jif);
desktopPane.add(jif);
|
如果你用jre1.3.*恐怕就看不到。因为我也遇到这个问题
我发现jdk1.2.2 or jdk1.4都可以。
但是,jdk1.3的例子却可以
搞不定了!:(
我发现jdk1.2.2 or jdk1.4都可以。
但是,jdk1.3的例子却可以
搞不定了!:(
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。