如何在这个java程序中添加GUI?

时间:2009-10-13 02:37:34

标签: java user-interface rmi credit-card

我只知道java中的基本内容。我需要为这种类型的程序创建一个GUI。它会显示您的信用卡信息。它有一些其他类,并利用rmiregistry。这在控制台中工作正常,但我需要在GUI中显示它。这里提示的第一件事是输入你的名字(java Shopper localhost 我的名字)。然后它会显示您的信用卡信息。谁能帮我?拜托,谢谢

import java.rmi.*;
import javax.swing.*;

public class Shopper {
    public static void main(String args[])
    {
        CreditManager cm = null;
        CreditCard account = null;

        if(args.length<2)
        {
            System.err.println("Usage:");
            System.err.println("java Shopper <server> <accountname>");
            System.exit(1);
        }
        try
        {
            String url = new String("//"+args[0]+"/cardManager");
            System.out.println("Shopper: lookup cardManager, url="+url);
            cm = (CreditManager) Naming.lookup(url);
        }catch(Exception e)
        {
            System.out.println("Error in getting Card Manager "+e);
            System.exit(1);
        }

        try
        {
            account = cm.findCreditAccount(args[1]);
            System.out.println("Found account for "+args[1]);
        }catch(Exception e)
        {
            System.out.println("Error in getting acocunt for "+args[1]);
            System.exit(1);
        }

        try
        {

             System.out.println("Available credit is "+account.getCreditLine());
            System.out.println("Changing pin number for account");
            account.setSignature(1234);
            System.out.println("Buying a new watch for $100");
            account.makePurchase(100.0f, 1234);
            System.out.println("Available credit is now "+account.getCreditLine());
            System.out.println("Buying a new pair of shoes for $160");
            account.makePurchase(160.0f, 1234);
            System.out.println("Cardholder: Paying off $136 of balance");
            account.payTowardsBalance(136.0f);
            System.out.println("Available credit is now "+account.getCreditLine());

        }catch(Exception e)
        {
            System.out.println("Transaction error for "+args[1]);
        }

        System.exit(0);
    }

}

4 个答案:

答案 0 :(得分:5)

首先,快速浏览一下Awt / Swing in the Javadoc

根据你需要做的事情,你可以在第一时间使用JFrame和一些TextArea(文本区域将是你的“控制台输出”)非常快速地添加一个gui,这是获得视觉效果的最快方式离开你的控制台。

之后,您可能会在弹出窗口中使用一些输入作为帐户名称(请参阅PopupFactory)。

您可以在第一次快速浏览sun网站上的各种gui示例,以便在为您的应用程序设计更完整的示例之前了解它的工作原理。

答案 1 :(得分:2)

NetBeans中的GUI编辑器实际上对于快速为小型应用程序创建GUI非常不错。只知道创建GUI(然后只有AWT,而不是Swing),我在大约十分钟内创建了我的第一个Swing应用程序。

由于你是Java的新手,我猜你还没有选择IDE。 NetBeans是一个很好的起点。

答案 2 :(得分:2)

首先阅读Swing Tutorial。有很多示例程序可供学习。如果遇到问题,您可以提出具体问题。

答案 3 :(得分:2)

我不建议您使用NetBeans GUI Builder,它会生成许多不必要的代码。 这是我写的一些帮助你从Swing开始的例子。这是使用两个JButton和一个JTextField创建一个JFrame的简单示例。 您可能也对MVC模式感兴趣,您可以在此处阅读有关该特定主题的更多信息(http://pclc.pace.edu/~bergin/mvc/mvcgui.html) 此外,如果你想显示结果,也许你应该尝试使用JTextPane控件,但这只是我的意见

public class MainWindowClient implements ActionListener {

    JFrame frame;
    JTextField jtxInput;

    JButton btnConnect;
    JButton btnDisconnect;

    public MainWindowClient() {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                init();
            }
        }); 
    }

    public void init() {
        try {
            UIManager
                    .setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
        } 
        catch (ClassNotFoundException e) {}
        catch (InstantiationException e) {} 
        catch (IllegalAccessException e) {}
        catch (UnsupportedLookAndFeelException e) {}

        frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setLayout(new BorderLayout());
        frame.setTitle("Client");
        frame.setSize(800, 600);

        final JPanel title = new JPanel(new FlowLayout(FlowLayout.LEFT));
        title.setBackground(new Color(255, 255, 255));
        final JLabel lblAppName = new JLabel("Client Application");
        lblAppName.setFont(new Font("sansserif", Font.PLAIN, 22));
        title.add(lblAppName);
        title.setBorder(BorderFactory.createTitledBorder(""));

        final JPanel panelInputBoard = new JPanel(new GridLayout());
        panelLogArea.setBorder(BorderFactory.createTitledBorder("Input"));
        jtxInput = new JTextField("");

        panelLogArea.add(jtxInput);

        final JPanel panelCommandBoard = new JPanel(new FlowLayout(FlowLayout.LEFT));
        panelCommandBoard.setBorder(BorderFactory.createTitledBorder("Client Commands"));

        btnConnect = new JButton("Connect");
        btnConnect.addActionListener(this);

        btnDisconnect = new JButton("Disconnect");
        btnDisconnect.addActionListener(this);

        panelCommandBoard.add(btnConnect);
        panelCommandBoard.add(btnDisconnect);

        frame.add(title, BorderLayout.NORTH);
        frame.add(panelCommandBoard, BorderLayout.SOUTH);
        frame.add(panelInputBoard, BorderLayout.NORTH);

        frame.setVisible(true);
    }

    @Override
    public void actionPerformed(ActionEvent event) {
        JButton eventSource = (JButton) event.getSource();
        if(eventSource.getText().equals("Connect")) {
            // Do some stuff
        }
        if(eventSource.getText().equals("Disconnect")) {
            // Do some stuff
        }       
    }


    public static void main(String[] args) {
        MainWindowClient m = new MainWindowClient(); 
    }
}