Как я могу получить доступ к программе из JFrame? - PullRequest
0 голосов
/ 20 марта 2020

Я только начал с 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);

}

}

1 Ответ

0 голосов
/ 20 марта 2020

1) Используйте юникод "\ u2022 \ u2014" вместо "• -"

2) Добавьте chars = text.getText().toCharArray(); в actionPerformed, чтобы задать для данного текста переменную chars

* 1006. * 3) Создать перевод translated.append(morse[j]);

4) Установить перевод на метку see.setText(translated.toString());

5) Refre sh фрейм frame.pack();

@Override
public void actionPerformed(ActionEvent e) {
    chars = text.getText().toCharArray();
    StringBuilder translated = new StringBuilder();
    System.out.println(chars);
    for (int i = 0; i < chars.length; i++)
        for (int j = 0; j < english.length; j++)
            if (english[j] == chars[i]) {
                translated.append(morse[j]);
            }

    see.setText(translated.toString());
    System.out.println(see.getText());
    frame.pack();
}

и frame переменная

public void initComponents() {
   JFrame frame = this;
   this.setTitle("Translator");

замените ваш массив char на

String[] morse = {"\u2022 \u2014 ", ... }
...