Я только начал с Java и программированием. Это моя вторая программа, и у меня есть небольшая проблема. Итак, прежде всего, я написал программу, которая может переводить слова в азбуку Морзе. Теперь я хочу добавить JFrame с 3 элементами. JTextArea будет использоваться для английских sh слов, JButton будет использоваться для перевода и JLabel с переведенным азбукой Морзе.
Проблема в том, что я не могу получить доступ к уже запрограммированному коду. Я пытался скопировать оба «для» в ActionListener, но затем программа ничего не делает. Итак, вопрос в том, как заставить этого переводчика работать в JFrame?
Буду очень признателен за ваш совет. Мне нужно многому научиться. :-)
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class Main extends JFrame{
public Main(){
initComponents();
}
public void initComponents(){
this.setTitle("Translator");
this.setLocationRelativeTo(null);
this.getContentPane();
this.add(panel);
panel.add(text);
panel.add(go);
panel.add(see);
go.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
String toTrans = text.getText();
System.out.println(toTrans);
//There I tried to copy my both "for"
System.out.println(see.getText());
}
});
this.pack();
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
}
JPanel panel = new JPanel();
JTextArea text = new JTextArea(1, 10);
JButton go = new JButton("Translate");
JLabel see = new JLabel("");
public static void main(String[] args) {
String toTranslate = "test".toLowerCase();
char[] english = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j',
'k', 'l','m', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u',
'v', 'w', 'x', 'y', 'z'};
String[] morse = {"• — ", "— • • • ", "— • — •", "— • • ", "•", "• • — •", "— — •", "• • • •",
"• •", "• — — —", "— • —", "• — • •","— —", "— •", "— — —", "• — — •",
"— — • —", "• — •", "• • •", "—", "• • —", "• • • —", "• — —", "— • • —",
"— • — —", "— — • •"};
char[] chars = toTranslate.toCharArray();
String translated = "";
for(int i = 0; i < chars.length; i++)
for (int j = 0; j < english.length; j++)
if (english[j] == chars[i]){
translated = toTranslate + morse[j] + "";
}
System.out.println(toTranslate);
new Main().setVisible(true);
}
}
И вот что я пытался сделать, ошибки нет, но кнопка ничего не делает:
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class Main extends JFrame{
public Main(){
initComponents();
}
public void initComponents(){
this.setTitle("Translator");
this.setLocationRelativeTo(null);
this.getContentPane();
this.add(panel);
panel.add(text);
panel.add(go);
panel.add(see);
go.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
String toTrans = text.getText();
System.out.println(toTrans);
for(int i = 0; i < chars.length; i++)
for (int j = 0; j < english.length; j++)
if (english[j] == chars[i]){
see.setText(morse[j] + "");
}
System.out.println(see.getText());
}
});
this.pack();
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
}
JPanel panel = new JPanel();
JTextArea text = new JTextArea(1, 10);
JButton go = new JButton("Translate");
JLabel see = new JLabel("");
char[] english = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j',
'k', 'l','m', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u',
'v', 'w', 'x', 'y', 'z'};
String[] morse = {"• — ", "— • • • ", "— • — •", "— • • ", "•", "• • — •", "— — •", "• • • •",
"• •", "• — — —", "— • —", "• — • •","— —", "— •", "— — —", "• — — •",
"— — • —", "• — •", "• • •", "—", "• • —", "• • • —", "• — —", "— • • —",
"— • — —", "— — • •"};
char[] chars = text.getText().toCharArray();
public static void main(String[] args) {
new Main().setVisible(true);
}
}