我有一个家庭作业来输入一个字符串并输出使用的每个字母的数量。当我使用 JOptionPane 并且我已经完成了作业时,该逻辑正在运行。但是,当我尝试“转换”代码以使用 JFrame JTextArea 输入和输出时,输出未显示正确的字符数。我确信这在我的逻辑中非常简单,但我没有看到
这是输出的样子:
这是代码
import javax.swing.*;
import javax.swing.border.Border;
import java.awt.*;
import java.awt.event.*;
public class Launcher extends JFrame
{
// create panel components
private static JTextArea txaUserInput;
private static JTextArea txaResults;
private static JButton btnSearch;
public static void main(String[] args)
{
JFrame frame = new JFrame("Final Answer");
Border b = BorderFactory.createMatteBorder(1, 1, 1, 1, Color.GRAY);
txaUserInput = new JTextArea();
txaUserInput.setPreferredSize(new Dimension(220, 70));
txaUserInput.setBorder(b);
txaUserInput.setLineWrap(true);
txaResults = new JTextArea("Results");
txaResults.setPreferredSize(new Dimension(200, 500));
txaResults.setBorder(b);
btnSearch = new JButton("Count Occurences of Each Letter");
frame.setLayout(new FlowLayout());
frame.add(txaUserInput);
frame.add(btnSearch);
frame.add(txaResults);
createAndShowGUI();
frame.setSize(300, 700);
frame.setVisible(true);
}
private static void createAndShowGUI()
{
btnSearch.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
// create variables
int[] counts = new int[26];
int count = 0;
String input = "";
String output ="";
for (short i = 0; i < (input).length(); i++)
{
char temp = Character.toLowerCase((input).charAt(i));
if (temp >= 'a' && temp <= 'z')
counts[temp - 'a']++;
}
for (short i = 0; i < counts.length; i++)
{
output += (char) ('a' + i) + ":\t " + counts[i] + "\n";
}
for (short i = 0; i < (input).length(); i++)
{
if ((input).charAt(i) == 'a' || (input).charAt(i) == 'A')
count++;
}
txaResults.setText(output);
}
});
}
}