从Java 7开始,他们在getComponentDownCycle类中添加了一个名为SortingFocusTraversalPolicy的新方法。现在,我一次又一次地遇到一个StachOverflow错误。这是stach的痕迹:
java.lang.RuntimeException: java.lang.reflect.InvocationTargetException
at com.qwe.rty.swing.container.bootstrap.AppletBootstrap.bgInit(AppletBootstrap.java:291)
at com.qwe.rt
所以我用Java制作了一个基于文本的RPG Applet。我使用的是SWING面板,上面有文本字段和按钮。我使用Netbeans对其进行编程,并使用GUI编辑器。我已经制作了HTML页面,它可以在浏览器中很好地打开。当我点击一个按钮来切换面板时(基本上将第一个设置为不可见),新的面板不会加载。我尝试使用repaint()和validate(),但就是不起作用……有什么帮助吗?
package applettest;
import javax.swing.UIManager;
public class NewApplet extends java.applet.Applet {
s
当我单击jTable行(行选择)时,我想插入以下代码以完成某些操作。我在所有方法和块之外插入了这段代码,但它显示了以下错误--“包模型不存在,预期的,类型的非法启动”。
密码,
ListSelectionModel model = expense_table.getSelectionModel();
model.addListSelectionListener(new ListSelectionListener(){
public void valueChanged(ListSelectionEvent event) {
// do some a
我正在使用Swing开发酒店预订应用程序。
我有一个JTable行的房间列表。如果我单击任何一行,那么如果用户预订了特定日期的房间,则所选的房间将转到预订。在那之后,如果任何人试图在相同的日期预订相同的房间,它必须显示警告消息,或者我如何从表中隐藏该行?
import javax.swing.*;
/**
*
* @author ssn
*/
public class Reservation extends javax.swing.JFrame {
/**
* Creates new form Reservation
*/
public Reserv
所以我需要一些帮助来格式化一个显示字段。
/**
* Creates new form birthTest
*/
public birthTest() {
initComponents();
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@
我已经使用net beans 8.0 ide为java项目编码。代码在netbeans上运行得很好,当我尝试在linux终端上运行同样的程序时,它给出了下面的errors.Can,请帮帮我!
[root@localhost myPackk]# vim WelcomeForm.java
[root@localhost myPackk]# javac WelcomeForm.java
----------
1. WARNING in WelcomeForm.java (at line 12)
public class WelcomeForm extends javax.swing.
Gui窗口不会在java中显示。我有java,netbeans,java。我用打开.jar文件来测试jdk和java,它的works..Here是完整的代码。
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author swipeales
*/
pu
当我尝试按Q2或Q3面板时,这是输出图像
这是gui中面板排列的图像。
这是我正在努力的代码的一部分。请帮帮忙。
public NewJFrame() {
initComponents();
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* reg
我看过其他线程,但找不到一个可行的解决方案。
我的程序读取一个文件,在一行中分割每个单词,并存储在一个数组中。如果搜索的内容在数组中,那么我希望将数组输出到相应的文本字段中。
我试图通过设置一个文本字段(ID文本字段)来测试它,但是文本字段没有被文本填充。到目前为止,这是我的代码:
图形用户界面- StudentUI
public class StudentUI extends javax.swing.JFrame {
/**
* Creates new form StudentUI
*/
public StudentUI() {
initComponents();
sa
相反,它只是打开新的框架,当那个框架关闭时..它不仅不会像它应该的那样隐藏和返回到主框架中..它打开第一帧的第二个版本...
public class FreelanceBillingUI extends javax.swing.JFrame {
public FreelanceBillingUI(){
initComponents();
}
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. T
我想在我的Java Swing图形用户界面中更改运行时的外观。 为此,我调用UIManager.setLookAndFeel()和SwingUtilities.updateComponentTreeUI()来刷新图形用户界面,这似乎可以工作,但后一种方法会导致严重的图形用户界面错误:任何带有JTable的选项卡都会导致以下异常,并且无法正确呈现: Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
at com.sun.java.swing.plaf.windows.Windows
我有一个包括javax.swing.JButton,javax.swing.JTextField的类
但是,类实例化之后,我只需要更改某些类型的属性。
我试着用this.getComponents(),但是,正在返回null。
这里我的代码:
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the templ
我在JAVA中遇到了这个问题,我需要从单个jTextField中取出多个双数,每次单击“保存”按钮时,将它们存储到一个数组中,我还想在jtextfield中设置5个输入的限制,例如: 12;13;14;15;16,然后我希望它停止,直到我单击“保存”,然后它变成空的等等。
对不起,如果我不清楚,这是我第一次在这里,我仍然是一个初学者的JAVA。
提前感谢!
这是我目前的实际代码,没什么了不起的。
package miniprojet;
public class Notes extends javax.swing.JDialog {
public Notes(java
这是我的Java第一次尝试,我不知道哪一个是错误。当我按j键时,我的GUI就卡住了。请协助
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package latihancrud;
import java.sql.Connection;
import javax.swing.
在net beans的帮助下,我正在使用swing开发一个java应用程序。我必须打开另一个包中不同的java文件中的不同的j框架..只需按一下按钮。
我还想将信息从当前页面(j帧)传输到重定向的j帧。文本字段内容、单选按钮下拉列表等信息。
帮我写什么按钮点击动作监听器...
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* CriptUI.java
*
* Created on 31 Aug, 2013, 6:0
我正在使用Netbeans GUI构建器,但它现在有点混乱。如何将图像添加到面板?我想我做的是对的,但它没有显示出来。我认为它应该在init()方法中,但是netbeans不允许我更改这部分代码。这是我为图像添加的代码:
//these four lines I added to add the image
imageIcon = new ImageIcon("login_icon.png");
image = new JLabel(imageIcon);
image.setToolTipText("SGS Secur
我是Java swing的新手。当从主类调用我的Jframe时,我确实遇到了问题。这可能是一个复制,但我找不出为什么我的代码不工作。所以我在这里发帖。
Mainclass
public static void main(String[] args) {
// TODO code application logic here
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
SendMail sendMail = new Se
由于某些原因,我在netbeans中的GUI程序不能正常工作;我试图制作一个程序,说明下载东西需要多长时间,所以我有一个旋转器,用于每秒传输多少kb/mb/gb,一个用于已经完成的进度的旋转器,以及一个用于目标kb/gb/mb的旋转器。
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
我想向GroupLayout添加update按钮,但程序抛出非法参数异常:
public class UsingFile extends javax.swing.JFrame {
DefaultTableModel dtm;
public UsingFile()
{
initComponents();`exception at this point`
dtm = (DefaultTableModel)myjtable.getModel();
readFile();
}
private void initComp
到目前为止,我在netbeans中做了一个计算器,我添加了加号和减号按钮来工作。但是假设我做了5+5,它给了我10,如果我再加5,它就给我15,所以这个部分是正确的。但是如果我做了9-5,它给了我-4,如果我从-4中减去2,我得到了正数6。请帮助,我对java相当陌生。
public class Calculator extends javax.swing.JFrame {
/**
* Creates new form Calculator
*/
public Calculator() {
initComponents();
}
double fNums = 0.0;
doub