Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/367.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/qt/7.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
录制用户选择java_Java_Swing_Java 7 - Fatal编程技术网

录制用户选择java

录制用户选择java,java,swing,java-7,Java,Swing,Java 7,我有一个滚动框,用户可以在其中选择选项。如果我想让用户选择在其他地方打印,我需要调用什么?我已经有了我想要的用户选择 results.setText(); 括号里是什么 import javax.swing.*; import java.awt.*; import java.util.ArrayList; import java.awt.event.*; public class container implements ActionListener { JPanel pan

我有一个滚动框,用户可以在其中选择选项。如果我想让用户选择在其他地方打印,我需要调用什么?我已经有了我想要的用户选择

 results.setText(); 
括号里是什么

import javax.swing.*;

import java.awt.*;
import java.util.ArrayList;

import java.awt.event.*;

public class container implements ActionListener
{
    JPanel panels;
    Timer timer;
    JTextField userTypingRegion;
    JTextArea results;
    JComboBox<Integer> ageEntries;
    JComboBox<String> raceList;

    public void init(Container pane)
    {
        JButton switcher = new JButton("Next / Back");
        switcher.addActionListener(this);

        JPanel infoPage = new JPanel();
        infoPage.setBackground(Color.BLACK);

        //CENTER        
        JPanel panelCenter = new JPanel();
        panelCenter.setBackground(Color.GRAY);
        panelCenter.setLayout(new BoxLayout(panelCenter, BoxLayout.Y_AXIS));
        infoPage.add(BorderLayout.CENTER, panelCenter);


        ///Gender
        JPanel genderSelection = new JPanel();
        JLabel gender = new JLabel("Gender:");
        JCheckBox checkGenderMale = new JCheckBox("Male");
        JCheckBox checkGenderFemale = new JCheckBox("Female");

        genderSelection.add(gender);
        genderSelection.add(checkGenderMale);
        genderSelection.add(checkGenderFemale);

        panelCenter.add(genderSelection);

        ///Age
        JPanel ageSelection = new JPanel();
        JLabel age = new JLabel("Age:");

        ArrayList<Integer> ageList = new ArrayList<Integer>   ();

        for (int i = 1; i <= 100; ++i) 
        {
            ageList.add(i);
        }

        DefaultComboBoxModel<Integer> modelAge = new DefaultComboBoxModel<Integer>();
        for (Integer i : ageList) 
        {
            modelAge.addElement(i);
        }

        JComboBox<Integer> ageEntries = new JComboBox<Integer>();
        ageEntries.setModel(modelAge);                  

        ageSelection.add(age);
        ageSelection.add(ageEntries);

        panelCenter.add(ageSelection);              

        ///Race
        JPanel raceSelection = new JPanel();
        JLabel race = new JLabel("Race/Ethnicity:");
        String[] raceEntries = {"White", "Black", "Hispanic"
                                       , "Asian/Pacific Islander"
                                       , "Alaska Native/American Indian", "Confused"};
        JComboBox<String> raceList = new JComboBox<String>(raceEntries);


        raceList.addActionListener(new transferInfo());

        raceSelection.add(race);
        raceSelection.add(raceList);

        panelCenter.add(raceSelection);

        ///Question 1
        JPanel firstQuestion = new JPanel();

        JLabel one = new JLabel("How often do you read?");
        String[] oneEntries = {"Always", "Often", "Sometimes"
                                       , "Not Often", "What is reading?"};
        JComboBox<String> oneAnswer = new JComboBox<String>(oneEntries);

        firstQuestion.add(one);
        firstQuestion.add(oneAnswer);   

        panelCenter.add(firstQuestion);

        ///Question 2
        JPanel secondQuestion = new JPanel();

        JLabel two = new JLabel("Average time (in minutes) " +
                                          "spent on the computer per day:");
        ArrayList<Integer> hourList = new ArrayList<Integer>();

        for (int z = 0; z <= 1440; z = z + 30) 
        {
            hourList.add(z);
        }

        DefaultComboBoxModel<Integer> modelHour = new DefaultComboBoxModel<Integer>();
        for (Integer z : hourList) 
        {
            modelHour.addElement(z);
        }

        JComboBox<Integer> hourEntries = new JComboBox<Integer>();
        hourEntries.setModel(modelHour);

        secondQuestion.add(two);
        secondQuestion.add(hourEntries);

        panelCenter.add(secondQuestion);

        ///Question 3 
        JPanel thirdQuestion = new JPanel();

        JLabel three = new JLabel("Favorite Subject");
        String[] threeEntries = {"English", "Math", "Science"
                                   , "Foreign Languages", "History", "Hate them all"};
        JComboBox<String> threeAnswer = new JComboBox<String>(threeEntries);

        thirdQuestion.add(three);
        thirdQuestion.add(threeAnswer);

        panelCenter.add(thirdQuestion);

        ///Question 4
        JPanel fourthQuestion = new JPanel();

        JLabel four = new JLabel("Average sleep (in minutes) per night:");

        ArrayList<Integer> sleepTimeList = new ArrayList<Integer>();

        for (int y = 0; y <= 1440; y = y + 30) 
        {
            sleepTimeList.add(y);
        }

        DefaultComboBoxModel<Integer> modelSleepTime = new DefaultComboBoxModel<Integer>();
        for (Integer z : sleepTimeList) 
        {
            modelSleepTime.addElement(z);
        }

        JComboBox<Integer> sleepTimeEntries = new JComboBox<Integer>();
        sleepTimeEntries.setModel(modelSleepTime);

        fourthQuestion.add(four);
        fourthQuestion.add(sleepTimeEntries);

        panelCenter.add(fourthQuestion);                

        ///Question 5
        JPanel fifthQuestion = new JPanel();

        JLabel five = new JLabel("I am...");
        String [] fiveEntries = {"Outgoing", "In the middle", "Shy"};
        JComboBox<String> fiveAnswer = new JComboBox<String>(fiveEntries);

        fifthQuestion.add(five);
        fifthQuestion.add(fiveAnswer);

        panelCenter.add(fifthQuestion);

        ///Question 6
        JPanel sixthQuestion = new JPanel();

        JLabel six = new JLabel("I am...");
        String [] sixEntries = {"Adventurous", "In the middle", "Lazy"};
        JComboBox<String> sixAnswer = new JComboBox<String>(sixEntries);

        sixthQuestion.add(six);
        sixthQuestion.add(sixAnswer);

        panelCenter.add(sixthQuestion);

        ///Question 7
        JPanel seventhQuestion = new JPanel();

        JLabel seven = new JLabel("I live in the...");
        String [] sevenEntries = {"City", "Suburb", "Country", "Narnia"};
        JComboBox<String> sevenAnswer = new JComboBox<String>(sevenEntries);

        seventhQuestion.add(seven);
        seventhQuestion.add(sevenAnswer);

        panelCenter.add(seventhQuestion);   

        ///Question 8
        JPanel eighthQuestion = new JPanel();

        JLabel eight = new JLabel("Please choose the painting you like.");

        eighthQuestion.add(eight);

        panelCenter.add(eighthQuestion);

        ///Adding Picture
        JPanel pictures = new JPanel();

        ImageIcon image = new ImageIcon("C:\\Users\\Kevin\\Desktop\\Left and Right.jpg");
        JLabel imageButton = new JLabel();

        imageButton.setIcon(image);

        pictures.add(imageButton);

        panelCenter.add(pictures);

        ///Question 9
        JPanel ninthQuestion = new JPanel();

        JCheckBox checkLeft = new JCheckBox("I like the left one!");
        JCheckBox checkRight = new JCheckBox("I like the right one!");

        ninthQuestion.add(checkLeft);
        ninthQuestion.add(checkRight);

        panelCenter.add(ninthQuestion);

        ////Second Card

        JPanel programFrame = new JPanel();
        programFrame.setBackground(Color.BLACK);

        programFrame.setMinimumSize(new Dimension(200, 300));
        programFrame.setMaximumSize(new Dimension(800, 700));   
        programFrame.setPreferredSize(new Dimension(500, 500));


    ///CENTER DATA COLLECTION REGION
    JPanel dataCollectionRegion = new JPanel();

    dataCollectionRegion.setBackground(Color.LIGHT_GRAY);
    dataCollectionRegion.setLayout(
                      new BoxLayout(dataCollectionRegion, BoxLayout.Y_AXIS));
    programFrame.add(BorderLayout.CENTER, dataCollectionRegion);

    ///South Region
    JPanel southRegion = new JPanel();

    southRegion.setBackground(Color.BLACK);
    southRegion.setLayout(new BoxLayout(southRegion, BoxLayout.Y_AXIS));
    programFrame.add(BorderLayout.NORTH, southRegion);

    ///Data Components

    JLabel sampleWriting = new JLabel("<html>7 Dear friends, let us love one another, for love comes from God. <br>Everyone  who loves has been born of God and knows God. 8 Whoever <br>does not love  does not know God, because God is love. 9 This is how  <br>God showed his love among us: He sent his one and only Son into <br>the world that we  might live through him. 10 This is love: not that we <br>loved God, but that  he loved us and sent his Son as an atoning sacrifice <br> for our sins. 11 Dear friends, since God so loved us, we also ought <br>to love one another. 12  No one has ever seen God; but if we love one <br> another,  God lives in  us and his love is made complete in us. <br> 1 Everyone who believes that Jesus is the Christ is born of God, and everyone <br> who loves the father loves his child as well. 2 This is how we know <br> that we love the children of God: by loving God and carrying out his commands. <br> 3 In fact, this is love for God: to keep his commands. And his commands <br> are not burdensome, 4 for everyone born of God overcomes the world. <br> This is the victory that has overcome the world, even our faith. 5 Who <br> is it that overcomes the world? Only the one who believes that Jesus is the Son of God.</html>");

    userTypingRegion = new JTextField();

    userTypingRegion.addActionListener( this);


    dataCollectionRegion.add(sampleWriting);
    dataCollectionRegion.add(userTypingRegion);

    ///Instructions South

    JLabel instructions = new JLabel("Instruction: Type the " +
                               "passage as fast as possible in the space provided.");
    instructions.setForeground(Color.white);

    JLabel showResult = new JLabel("- - - Results - - -");

    showResult.setForeground(Color.white);
    showResult.setHorizontalTextPosition(JLabel.CENTER);

    results = new JTextArea();
    results.setEditable(false);

    southRegion.add(instructions);
    southRegion.add(Box.createRigidArea(new Dimension(0,5)));
    southRegion.add(showResult);
    southRegion.add(Box.createRigidArea(new Dimension(0,5)));
    southRegion.add(results);

    ///add cards
        panels = new JPanel(new CardLayout());
        panels.add(infoPage);
        panels.add(programFrame);

        pane.add(switcher, BorderLayout.PAGE_START);
        pane.add(panels, BorderLayout.CENTER);

    }

    public void actionPerformed(ActionEvent evt)
    {
        CardLayout layout = (CardLayout)(panels.getLayout());
        layout.next(panels);
    }

    class transferInfo implements ActionListener
    {
        public void actionPerformed(ActionEvent event)
        {
            results.setText("Selected: " + raceList.getSelectedItem());    
        }
    }

    public static void main(String[] args) 
    {
        JFrame frame = new JFrame("Biometric Keystroke Dynamics");
        container TabChanger = new container();
        TabChanger.init(frame.getContentPane());
        frame.pack();
        frame.setResizable(false);
        frame.setVisible(true);  
    }  
}
import javax.swing.*;
导入java.awt.*;
导入java.util.ArrayList;
导入java.awt.event.*;
公共类容器实现ActionListener
{
JPanel小组;
定时器;
JTextField用户类型区域;
区域结果;
JComboBox-ageEntries;
JComboBox赛马选手;
公共void init(容器窗格)
{
JButton开关=新JButton(“下一个/后一个”);
addActionListener(这个);
JPanel infoPage=新的JPanel();
infoPage.setBackground(颜色:黑色);
//居中
JPanel panelCenter=新的JPanel();
嵌板中心。立根(颜色。灰色);
panelCenter.setLayout(新的BoxLayout(panelCenter,BoxLayout.Y_轴));
添加(BorderLayout.CENTER、panelCenter);
///性别
JPanel genderSelection=新的JPanel();
JLabel性别=新JLabel(“性别:”);
JCheckBox checkendermale=新JCheckBox(“男性”);
JCheckBox checkenderfemale=新JCheckBox(“女性”);
性别选举。添加(性别);
genderSelection.add(选中gendermale);
genderSelection.add(checkGenderFemale);
panelCenter.add(性别选举);
///年龄
JPanel ageSelection=新的JPanel();
JLabel年龄=新JLabel(“年龄:”);
ArrayList ageList=新的ArrayList();

对于(int i=1;i首先,您在代码中犯下的所有错误:

  • 您正在将
    JComboBox ageEntries;
    JComboBox raceList;
    声明为您的实例变量和init(…)方法中的本地变量。不要声明它们两次,只使用实例变量或本地变量(视需要而定),但不要使用它们两次
  • 始终将添加此ilne
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    作为JFrame的对象,这有助于以良好的方式关闭JFrame窗口
  • 现在了解如何在
    results.setText();
    中编写。您可以在容器类中创建一个验证方法,该方法将返回
    boolean
    ,并将在
    actionPerformed(…)中调用
    下一个按钮的方法
    并在该方法中检查用户输入的值是否合法,如果它们是合法值,则使用
    StringBuilder
    将其附加,如

    StringBuilder sb = new StringBuilder(); // this will be your instance variable not local.
    sb.append((String) ageEntries.getSelectedItem());
    sb.append(" ");  // Add this space to distinguish between two values.
    // and so on for other values.
    

    完成后,您可以编写
    results.setText(containerObject.sb.toString());
    来显示这些值。

    这是非常模糊的。您能添加更多的细节而不是询问括号中应该包含什么吗?例如,
    结果的类型是什么?
    ?结果的类型是JTextField,我希望用户在其中选择。用户可用的选项是组合框中的字符串和int或您想要的复选框要将用户从复选框或组合框中选择的内容打印到名为
    results
    JTextField
    组件中,我想我们需要能够看到其余的代码,以便能够帮助您完成这项工作。请学习java命名约定并遵守这些约定。感谢您的建议。我正在尽最大努力学习这门语言。这是我的第一个项目,我已经学到了很多。