当前位置:  技术问答>java相关

源代码有问题,请帮我看一下

    来源: 互联网  发布时间:2015-07-01

    本文导语:  这是一个关于JInternalFrame的例子。 是我按照书上打下来得,但是它什么都不显示不能。 不知是为什么? 请高手帮忙。 import java.awt.*; import java.awt.event.*; import javax.swing.*; /**  * Title: newman的作品  * Description: neman...

这是一个关于JInternalFrame的例子。
是我按照书上打下来得,但是它什么都不显示不能。
不知是为什么?
请高手帮忙。

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
/**
 * 

Title: newman的作品


 * 

Description: neman的版权


 * 

Copyright: Copyright (c) 2002


 * 

Company: shu


 * @author nch@peoplemail.com.cn
 * @version 1.0
 */

public class JInternalFrame_test {

  public JInternalFrame_test() {
  }
  public static void main(String[] args) {
    MyWindow3 JInternalFrame_test1 = new MyWindow3();
  }
}

class MyWindow3 extends JFrame
  {JButton button1,button2;
   JInternalFrame interframe_1,interframe_2;
   MyWindow3()
   {Container con=this.getContentPane() ;
    con.setLayout(new GridLayout(1,2)) ;
    button1=new JButton("Boy");
    button2=new JButton("Girl");
    interframe_1=new JInternalFrame("内窗体1",true,true,true,true);
    interframe_1.setSize(100,100) ;
    interframe_1.getContentPane().add(button1,BorderLayout.CENTER ) ;
    JDesktopPane desk1=new JDesktopPane();
    desk1.setLayout(new FlowLayout()) ;
    desk1.add(interframe_1) ;
    interframe_2=new JInternalFrame("内窗体2",true,true,true,true);
    interframe_2.setSize(300,150) ;
    interframe_2.getContentPane() .add(button2,BorderLayout.CENTER) ;
    interframe_2.getContentPane() .add(new Label("ookk"),BorderLayout.NORTH) ;
    JDesktopPane desk2=new JDesktopPane();
    desk2.setLayout(new FlowLayout()) ;
    desk2.add(interframe_2) ;
    con.add(desk1) ;
    con.add(desk2) ;
    addWindowListener (new WindowAdapter()
{public void windowClosing(WindowEvent e)
{System.exit (0);}});
    this.setSize(200,200);
    this.setVisible(true) ;
    }
  }

|
帮你改了:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
/**
 * 

Title: newman的作品


 * 

Description: neman的版权


 * 

Copyright: Copyright (c) 2002


 * 

Company: shu


 * @author nch@peoplemail.com.cn
 * @version 1.0
 */

public class InternalFrame_test {

public InternalFrame_test() {
}
public static void main(String[] args) {
MyWindow3 JInternalFrame_test1 = new MyWindow3();
}
}

class MyWindow3 extends JFrame
{JButton button1,button2;
JInternalFrame interframe_1,interframe_2;
MyWindow3()
{Container con=this.getContentPane() ;
con.setLayout(new GridLayout(1,2)) ;
button1=new JButton("Boy");
button2=new JButton("Girl");
interframe_1=new JInternalFrame("内窗体1",true,true,true,true);
interframe_1.setBounds(100,100,300,300) ;
interframe_1.getContentPane().add(button1,BorderLayout.CENTER ) ;
JDesktopPane desk1=new JDesktopPane();
desk1.setLayout(new FlowLayout()) ;
desk1.add(interframe_1) ;
interframe_2=new JInternalFrame("内窗体2",true,true,true,true);
interframe_2.setBounds(300,150,350,350) ;
interframe_2.getContentPane() .add(button2,BorderLayout.CENTER) ;
//interframe_2.getContentPane() .add(new Label("ookk"),BorderLayout.NORTH) ;
JDesktopPane desk2=new JDesktopPane();
desk2.setLayout(new FlowLayout()) ;
desk2.add(interframe_2) ;
interframe_1.show();
interframe_2.show();
con.add(desk1) ;
con.add(desk2) ;
addWindowListener (new WindowAdapter()
{public void windowClosing(WindowEvent e)
{System.exit (0);}});
this.setSize(200,200);
this.setVisible(true) ;
}
}

    
 
 

您可能感兴趣的文章:

  • 关于源代码的问题
  • 关于软件或者程序的源代码问题??
  • firefox源代码问题
  • linux 源代码的学习问题
  • 菜鸟问题(源代码)
  • 在制作的留言簿上提交jsp的源代码的问题,
  • 请教一下调试GCC源代码问题
  • 高深问题:有了linux内核源代码如何做成一个linux操作系统
  • X Window System 的源代码的问题
  • 谁有“八女王”和“六匹马”问题的源代码,每个50分!!!!
  • fc-6 中编译源代码 ./configure 时 gtk-config 问题
  • 关于linux内核版本和源代码版本问题
  • configure - 配置源代码树的问题?
  • 菜鸟问题:linux各个函数的实现源代码在哪?
  • 关于Linux2.4源代码的问题
  • linux内核rename源代码位置问题 or -2
  • 保护java源代码的问题。
  • 关于正版光盘里的源代码问题?  高分相送!!
  • 菜鸟问题:java中import导入的文件在哪里,可以看倒源代码吗?
  • 莱昂氏UNIX源代码的问题?
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • php实现socket实现客户端和服务端数据通信源代码
  • linux源代码的时间函数源代码
  • RedHat Linux是开放源代码的吗?如何能看见它的源代码,如何进行修改?
  • 关于Linux2.4源代码的问题 iis7站长之家
  • 如果要研究源代码以提高自己,哪一个开放源代码的软件比较合适?
  • 寻找<<java2图形设计卷2SWING>>一书源代码和<<java网络高级编程>>一书源代码
  • 请问一些shell命令的源代码,比如cp 的源代码存放在什么目录中?
  • 高分请教!Netscape浏览器的源代码公开了吗?从那里可以得到For linux的源代码?
  • 谁有最早版本的LINUX源代码?能发给我一份吗?高分求救啊……我真的很需要最早的一些版本的源代码的!
  • 谁能告诉我早期LINUX内核的源代码和C编译器的源代码,哪能找到!谢谢!要多少分都给!
  • 谁有Java源代码中floatToIntBits,intBitsToFloat的源代码?
  • 我想查看fputs(),fread(),fwrite(),fclose()函数的源代码,请问这部分的源代码在哪个RPM包里。
  • Linux源代码中ata驱动为什么要调用pci驱动的代码
  • 怎样用script实现某段html随滚动条滚动的效果?最好能给源代码?或者给出能看到源代码的链接也可以
  • 请问高手:Ctrl+Alt+F1~F8可以切换虚拟终端,这个代码是在哪儿实现的?我搞不懂,最好指点源代码大概位置。
  • 高分请教:redhat 的各种应用程序源代码放在哪儿?
  • 为什么比较freebsd和linux的源代码,觉得linux的代码十分的庞大。。
  • 请教如何查看gFTP的源代码?
  • 在哪里可以看到Linux的源代码???
  • 怎么得到KDE的源代码???
  • 内核源代码树 怎么理解啊?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3