- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
几周前我编写了一个程序以便进行更改,现在我试图将该程序转换为 GUI,但遇到了一些问题。我可以使用 Netbeans Jframe 编辑器制作 gui 并使 gui 看起来很漂亮,这使得我的问题是试图弄清楚如何插入我的代码。我将程序插入第一个 Jbutton,但无法弄清楚如何从 gui 而不是程序获取用户输入。我单击 Jbutton,它要求控制台而不是 GUI 来完成工作。请帮忙。
我的图形用户界面是什么样的
原始代码
public static void main (String[] Args) {
// Initialize varriables
int quarters = 25;
int dimes = 10;
int nickles = 5;
int pennies = 1;
//Loop starts here
while(true) {
System.out.println("Enter in a number between 1-99");
// Blank Output for spacing
System.out.println();
// User Input "remember this for reference"
Scanner Userinput = new Scanner(System.in);
int input = Userinput.nextInt();
//while loop end
if(input<1) {
break; //break is a keyword that exits the loop when a condition is met.
}
int q = input/quarters;
input -= q*quarters;
String A = "Quarters:" +q;
//Blank Output for spacing
System.out.println();
//output quarters
System.out.println(A);
int d = input/dimes;
input -= d*dimes;
String B = "Dimes:" +d;
//output dimes
System.out.println(B);
int n = input/nickles;
input -= n*nickles;
String C = "Nickles:" +n;
//output nickles
System.out.println(C);
int p = input/pennies;
input -= p*pennies;
String D = "Pennies:" +p;
//output pennies
System.out.println(D);
}
}
使用 Netbeans Jframe 编辑器的 GUI 的当前代码
import java.util.Scanner;
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author Christ
*/
public class coin extends javax.swing.JFrame {
public coin() {
initComponents();
}
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">
private void initComponents() {
jLabel1 = new javax.swing.JLabel();
jTextField1 = new javax.swing.JTextField();
jLabel2 = new javax.swing.JLabel();
jLabel3 = new javax.swing.JLabel();
jLabel4 = new javax.swing.JLabel();
jLabel5 = new javax.swing.JLabel();
jButton1 = new javax.swing.JButton();
jButton2 = new javax.swing.JButton();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
jLabel1.setText("Enter a Number (1-99)");
jTextField1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField1ActionPerformed(evt);
}
});
jLabel2.setText("Quarters");
jLabel3.setText("Dimes");
jLabel4.setText("Nickles");
jLabel5.setText("Pennies");
jButton1.setText("Calculate");
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
}
});
jButton2.setText("Clear");
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(jButton1, javax.swing.GroupLayout.PREFERRED_SIZE, 179, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(18, 18, 18)
.addComponent(jButton2, javax.swing.GroupLayout.PREFERRED_SIZE, 179, javax.swing.GroupLayout.PREFERRED_SIZE))
.addComponent(jLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, 68, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGroup(layout.createSequentialGroup()
.addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 123, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(68, 68, 68)
.addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, 114, javax.swing.GroupLayout.PREFERRED_SIZE))
.addComponent(jLabel3)
.addComponent(jLabel4)
.addComponent(jLabel5))
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(22, 22, 22)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel1)
.addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(55, 55, 55)
.addComponent(jLabel2)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(jLabel3)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(jLabel4)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(jLabel5)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 53, Short.MAX_VALUE)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jButton1, javax.swing.GroupLayout.PREFERRED_SIZE, 50, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jButton2, javax.swing.GroupLayout.PREFERRED_SIZE, 50, javax.swing.GroupLayout.PREFERRED_SIZE))
.addContainerGap())
);
pack();
}// </editor-fold>
private void jTextField1ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
}
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
// Initialize varriables
int quarters = 25;
int dimes = 10;
int nickles = 5;
int pennies = 1;
//Loop starts here
while(true) {
System.out.println("Enter in a number between 1-99");
// Blank Output for spacing
System.out.println();
// User Input "remember this for reference"
Scanner Userinput = new Scanner(System.in);
int input = Userinput.nextInt();
//while loop end
if(input<1) {
break; //break is a keyword that exits the loop when a condition is met.
}
int q = input/quarters;
input -= q*quarters;
String A = "Quarters:" +q;
//Blank Output for spacing
System.out.println();
//output quarters
System.out.println(A);
int d = input/dimes;
input -= d*dimes;
String B = "Dimes:" +d;
//output dimes
System.out.println(B);
int n = input/nickles;
input -= n*nickles;
String C = "Nickles:" +n;
//output nickles
System.out.println(C);
int p = input/pennies;
input -= p*pennies;
String D = "Pennies:" +p;
//output pennies
System.out.println(D);
}
}
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(coin.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(coin.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(coin.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(coin.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new coin().setVisible(true);
}
});
}
// Variables declaration - do not modify
private javax.swing.JButton jButton1;
private javax.swing.JButton jButton2;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel3;
private javax.swing.JLabel jLabel4;
private javax.swing.JLabel jLabel5;
private javax.swing.JTextField jTextField1;
// End of variables declaration
}
现在我认为需要的是放弃将用户输入插入控制台来完成工作的扫描仪,并以某种方式从 GUI 中的文本框获取用户输入,但我完全不知道如何实现这一点
我也是一个初学者,所以如果您能让它易于理解,我们将不胜感激,简单是最好的。
还发现了一个有帮助但无法使用它来尝试使工作达到我想要的效果的图。
链接至图特 http://www.codeproject.com/Articles/33536/An-Introduction-to-Java-GUI-Programming
最佳答案
几年前,Netbeans 因创建复杂的 GUI 代码而赢得了我的声誉。我自己从未真正测试过它,但这对于如此简单的应用程序来说似乎有很多代码。
将基于控制台的应用程序转换为基于 GUI 的应用程序时,您必须问自己这个问题:用户如何与系统交互?
就您而言,您的控制台应用程序通过以下方式与用户交互:
现在,您必须解决如何将这两种交互更改为 GUI 布局。它应该对现有代码进行极少的修改,同时添加 GUI 代码来处理输入/输出。
就您而言,您有一个充当提示的标签、一个容纳输入的文本区域以及一个充当接受输入的按钮。
所以你的程序流程是这样的:用户在文本区域中输入 -> 用户点击提交 -> 系统接受输入并处理它 -> 系统输出以 25 美分、10 美分等形式变化的内容。
现在,我们对其进行编码...
第 1 步:设置 GUI 机制。你已经掌握了
第 2 步:处理用户输入:您可以在“计算”按钮的处理程序中执行此操作,在您的情况下,该按钮显示为 jButton1ActionPerformed
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
// Initialize varriables
int quarters = 25;
int dimes = 10;
int nickles = 5;
int pennies = 1;
try {
int input = Integer.parseInt(jTextField1.getText());
}
catch (NumberFormatException e) {
//prompt user to enter an integer, not erroneous input
//e.printStackTrace();
}
//future code
}
请注意输入与控制台应用程序中的功能如何相同,我们只是通过不同的方式获取它。由于GUI系统是由用户输入驱动的,因此我们不应该连续循环直到用户输入有效输入,我们只需告诉用户他们的输入无效,然后让他们输入有效的数字。我们检查数字是否有效(输入1到99之间)并进行处理,否则不执行任何操作(并提示输入有效?)
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
// Initialize varriables
int quarters = 25;
int dimes = 10;
int nickles = 5;
int pennies = 1;
try {
int input = Integer.parseInt(jTextField1.getText());
}
catch (NumberFormatException e) {
//prompt user to enter an integer, not erroneous input
//e.printStackTrace();
}
//if input in the range of [1, 99]
if(1 <= input && input <= 99) {
//do processing
}
else {
//prompt user for valid input, for example by using JOptionPane
}
}
现在:输出。您无需在 A、B、C 和 D 上执行 System.out.println,而只需设置代表四分之一、一毛钱等金额的 JComponent 文本。目前,您的总计似乎缺少标签/文本区域,因此我首先添加它们,然后使用 setText(A)、setText(B) 等。
关于java - 制作更改程序GUI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20484965/
我想在一个页面上做一个按钮,可以在同一页面调用一个JS函数。该函数将需要创建(打开)新窗口,其 HTML 代码由 JS 函数本身提供。我该怎么做? 这样做的目的是从特定页面生成一个打印友好的页面。 请
我一直在用 php 开发这个项目。该项目的一半是使用 mysql_query 完成的,最新的模块是使用 mysqli 制作的。有很多模块,我不想更改代码。如果是这样的话会不会产生问题。或者我应该将其全
我安装了好几次 qt creator,但它从来没有像我现在的 PC 那样花钱;首先,我使用我的 Pendrive(Qt 5.8 的)上一直有的安装程序,告诉我我无法下载一些存储库,我下载了相同安装程序
我安装了 Qt Creator 5.10.1,当我构建项目时出现错误:“无法确定要运行哪个”make“命令。检查构建配置中的”make“步骤。”。 我已经在另一台 PC 上安装了 Qt,我看到了这个问
看看这个 makefile,它有某种原始的进度指示(可能是一个进度条)。 请给我建议/意见! # BUILD 最初是未定义的 ifndef 构建 # max 等于 256 个 x 十六:= x x x
这个问题会有点长,对此我很抱歉:) 我花了几天时间寻找最好的解决方案,以在 asp mvc 和 JQuery 中制作图像库。 主要问题是当用户点击拇指时显示图像。 我想让整个浏览器 View 变成黑色
我是Python方面的 super 高手。我一直在努力寻找适当的解决方案。这是列表,L = [0, 0, 0, 3, 4, 5, 6, 0, 0, 0, 0, 11, 12, 13, 14, 0, 0
让我们考虑两个简化的 CMakeLists.txt set(GTEST "/usr/local/lib/libgtest.a") set(GMOCK "/usr/local/lib/libgmock.
我如何制作 Makefile,因为这是按源代码分发程序的最佳方式。请记住,这是针对 C++ 程序的,而我是从 C 开发领域开始的。但是可以为我的 Python 程序制作 Makefile 吗? 最佳答
由于 Ord 是 Eq 的子类,我发现很难理解创建该类的新类型实例的样子。 我已经设法做到了: newtype NT1 = NT1 Integer instance Eq NT1 wh
在 PowerShell 中,我想编写一个函数,它接受不同的选项作为参数。没关系,如果它接收多个参数,但它必须接收至少一个参数。我想通过参数定义而不是之后的代码来强制执行它。我可以使用以下代码让它工作
我正在通过构建包使用 enable-ssl 在 heroku (ubuntu) 上安装 ffmpeg。我能够一直构建到这些错误: install: cannot create regular file
我是 FFmpeg 的新手,但作为一个学习一些 mysql 数据库的项目,我正在尝试创建一个视频上传网站。 当我尝试使用此代码制作缩略图时: shell_exec("/usr/local/bin/ff
我想要一个绘制可绘制对象的 Actor ,但将其剪辑为 Actor 的大小。我从 Widget 派生这个类,并使用一些硬编码的值作为一个简单的测试: public class MyWidget ext
我一直在查看 Faxien+Sinan 和 Rebar,Erlang OTP 的基本理念似乎是,在单个 Erlang 镜像实例上安装应用程序和版本。保持发布自包含的最佳实践是什么?有没有办法打包发布,
我正在尝试克隆存储库,但它应该是彼此独立的副本。这背后有什么魔法吗,或者只是使用 svn 客户端并克隆它? 谢谢 最佳答案 试试 svnadmin hotcopy .您可以在 repo mainten
我想做一个这样的菜单: Item 1 Item 2 Item 3 Subitem 1 Subitem 2 但我得到了这个:
为 Yii 创建扩展的最佳方式是什么? 这是我到目前为止所做的 我希望它可以通过 composer 安装,所以我为它创建了一个 github repo。 我在文件夹 vendor/githubname
我尝试制作一个ActionListener,但它给了我一个错误。我导入了事件,但它仍然不起作用。这是我的代码: send.addActionListener(new jj); private clas
我需要能够将 div 内的 HTML 代码恢复为页面就绪状态。我需要这个,因为我想在页面准备好后对 HTML 代码进行一些更改,然后在需要时将其恢复到页面准备好时的状态.. 我想使用克隆,但是如何只复
我是一名优秀的程序员,十分优秀!