Nice programing

AWT가없는 Java GUI 리스너

nicepro 2020. 10. 10. 10:59
반응형

AWT가없는 Java GUI 리스너


저는 인터넷 튜토리얼에서 배우는 초보 Java 개발자입니다. 전체 화면 GUI 응용 프로그램을 배우고 있습니다. 어제 프로그램에서 AWT를 사용하지 말아야한다는 말을 들었습니다. 나는 이미 가볍고 무거운 부품에 대해 알고 있는데, 주요 문제는 마우스와 키보드 청취자입니다. AWT가 오래된 이유는 무엇입니까? AWT없이 프로그램을 만드는 방법 (JComponents에 리스너 추가 등) (AWT를 대체 할 수있는 스윙의 종류는 무엇입니까?)


당신은 당신에게 주어진 정보를 잘못 해석하고 있습니다. AWT 구성 요소와 함께 Swing 구성 요소를 사용하지 않아야합니다 . AWT 리스너 구조, 레이아웃 관리자 등과 함께 Swing을 사용하는 것은 괜찮으며 실제로 사용하지 않는 것은 불가능합니다.


좋은 답변이 몇 가지 있었지만 조금 다른 측면을 다루고 싶습니다. Swing이 AWT를 넘어 제공하는 것.

구성품

스윙 지원은 문서를 스타일 JEditorPane& JTextPane및 기타의 HTML을 사용하여 제한된 범위 JComponents. AWT는 어떤 컴포넌트에서도 스타일이 지정된 문서를 지원하지 않습니다.

AWT 같은 트리 기반 구조에는 제공되지 JTree등 없음 표 구조 JTable없이 버전, JToolBar.

AWT에는 JColorChooser간단한 유틸리티 클래스에 대해 & none에 대한 동등한 (찾거나 기억할 수있는)이 없습니다 JOptionPane.

청취자

주석에서 언급했듯이 javax.swing.event패키지 의 20 개 이상의 추가 / 대체 리스너를 참조하십시오 .

플러그 형 룩앤필

스윙 구성 요소는 네이티브 PLAF를 포함하여 런타임에 특정 모양과 느낌으로 설정할 수 있습니다.

더 많은 샘플 Nested Layout Example 의 스크린 샷을 참조하십시오 .

레이아웃

수많은 AWT 레이아웃 외에도 Swing은 다음을 제공합니다.

  1. BoxLayout
  2. GroupLayout
  3. OverlayLayout
  4. ScrollPaneLayout
  5. SpringLayout
  6. ViewportLayout

다른


그 간단한 설명에서 내가 놓친 것이 훨씬 더 많 겠지만, 결론은 Swing이 완전히 새롭고 더 활성화 된 GUI 툴킷이라는 것입니다.

모두가 구축, 스윙 AWT에에에 크게 클래스를 사용합니다.


Java's Swing takes ActionListeners, which are part of the AWT package. If you wish to use swing, you must use some form of an AWT ActionListener. That is just the way things are. I don't suggest using Java at all for complex guis, but nor would I say that AWT is outdated, as there is no direct replacement. Thus, just go ahead and use AWT.

As an alternative, you could look into JOGL, but that's more if you are trying to create something game-oriented.


This is a small example which can demonstrate, the use of javax.swing.Action package you should also refer to java doc for javax.swing.event package i think you are finding that . . .

import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JPanel;
import javax.swing.JToolBar;

class SysOutHelloAction extends AbstractAction {
    private static final Icon printIcon = new ImageIcon("Print.gif");

    SysOutHelloAction() {
        super("Print", printIcon);
        putValue(Action.SHORT_DESCRIPTION, "Hello, World");
    }

    public void actionPerformed(ActionEvent actionEvent) {
        System.out.println("Hello, World");
    }
}

public class SwingActionTester {
    public static void main(String args[]) {
        JFrame frame = new JFrame("Action Sample");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        final Action printAction = new SysOutHelloAction();
        JMenuBar menuBar = new JMenuBar();
        JMenu menu = new JMenu("File");
        menuBar.add(menu);
        menu.add(new JMenuItem(printAction));
        JToolBar toolbar = new JToolBar();
        toolbar.add(new JButton(printAction));
        JButton enableButton = new JButton("Enable");
        ActionListener enableActionListener = new ActionListener() {
            public void actionPerformed(ActionEvent actionEvent) {
                printAction.setEnabled(true);
            }
        };
        enableButton.addActionListener(enableActionListener);
        JButton disableButton = new JButton("Disable");
        ActionListener disableActionListener = new ActionListener() {
            public void actionPerformed(ActionEvent actionEvent) {
                printAction.setEnabled(false);
            }
        };
        disableButton.addActionListener(disableActionListener);
        JButton relabelButton = new JButton("Relabel");
        ActionListener relabelActionListener = new ActionListener() {
            public void actionPerformed(ActionEvent actionEvent) {
                printAction.putValue(Action.NAME, "Changed Action Value");
            }
        };
        relabelButton.addActionListener(relabelActionListener);
        JPanel buttonPanel = new JPanel();
        buttonPanel.add(enableButton);
        buttonPanel.add(disableButton);
        buttonPanel.add(relabelButton);
        frame.setJMenuBar(menuBar);
        frame.add(toolbar, BorderLayout.SOUTH);
        frame.add(buttonPanel, BorderLayout.NORTH);
        frame.setSize(300, 200);
        frame.setVisible(true);
    }
}

You are right. Both Java AWT and Java Spring are obsolete. Use JavaFX instead.
And, as a commentary, I am frustrated with Java, that it was supposed to be "write once run everywhere", when now it turns out to be "must keep rewriting your app every three months" because new Java releases break previous code, and new packages replace the old.

참고URL : https://stackoverflow.com/questions/6255106/java-gui-listeners-without-awt

반응형