Java登陆界面设计添加一个字符提示标签

如题privateStringnote="提示信息:";buttomLabel=newJLabel(note);//提示信息标签在底部setLayout(null);//... 如题
private String note="提示信息:";

buttomLabel =new JLabel(note);//提示信息标签在底部

setLayout(null);//设置为空布局

buttomLabel.setBounds(34,350,80,20);

只是截取了部分代码 没有提示错误 其它组件均可以正常显示 但这个无论走在哪个位置都显示不出来
有大神可以提一下意见吗 下面是全部代码

package com.loginwindow;

import javax.swing.*;
import java.awt.event.*;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextField;

public class loginwindow extends JFrame {
private JLabel numLabel,nameLabel,topLabel,buttomLabel;//标签,提示信息
private JTextField numText,nameText;//文本框
private JButton loginButton,exitButton;//登录,登出按钮
private String note="提示信息:";

public loginwindow(){
super("系统登录"); //super 调用系统构造

ImageIcon imgtop=new ImageIcon("res/无标题.png");//res为项目目录中与src并列
topLabel =new JLabel(imgtop);//带图标的JLabel对象放在顶端
buttomLabel =new JLabel(note);//提示信息标签在底部

//登录窗体的中间部分放置以下对象
numLabel =new JLabel("考生学号:");
nameLabel =new JLabel("考生姓名:");
numText =new JTextField(20);
nameText =new JTextField(20);
loginButton =new JButton("登录");
exitButton =new JButton("登出");

setLayout(null);//设置为空布局
add(numLabel);//添加组件
add(nameLabel);
add(numText);
add(nameText);
add(loginButton);
add(exitButton);
add(topLabel);
add(buttomLabel);

//设置组件的长宽高
numLabel.setBounds(130,90,80,20);
nameLabel.setBounds(130,130,80,20);
numText.setBounds(200,90,160,20);
nameText.setBounds(200,130,160,20);
loginButton.setBounds(120,200,100,30);
exitButton.setBounds(260,200,100,30);
topLabel.setBounds(0, 0, 500, 370);
buttomLabel.setBounds(34,350,80,20);

//设置主窗体在屏幕上的位置 长宽高
setBounds(260,200,500,370);
setResizable(false);//主窗体大小不可变
setVisible(true);//可见

setDefaultCloseOperation(this.EXIT_ON_CLOSE);
validate();//刷新主窗体

}
}
展开
 我来答
碧血玉叶花
2015-05-26 · TA获得超过4976个赞
知道大有可为答主
回答量:6154
采纳率:0%
帮助的人:1706万
展开全部
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class AireDemo extends JFrame implements ActionListener{
 Container p = this.getContentPane();
 JButton jb = new JButton("进入");
         JLabel j1 = new JLabel("用户名");
         JLabel j2 = new JLabel("用户名");
         JTextBox jtb1 = new JTextBox();
         JTextBox jtb2 = new JTextBox();
 AireDemo(){
 p.SetLayout(new FlowLayout);
 p.add(jb);
         p.add(j1);
         p.add(j2);
         p.add(jtb1);
         p.add(jtb2);
 jb.addActionListener(this);
 this.setDefaultLookAndFeelDecorated(true);
 this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
 this.setSize(this.get);
 this.setVisible(true);
 }
public static void main(String[] args){
 new AireDemo();
 }
public void actionPerformed(ActionEvent e) {
 if(e.getSource()==jb){
  new 另外一个类();
 }
 }
}


可能有大小写错误 其他的应该没错

追问
什么东西
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式