It implements a mortgage calculator that uses four JFormattedTextFields : 格式输入控件 « Swing « Java 教程

En
Java 教程
1. 语言基础
2. 数据类型
3. 操作符
4. 流程控制
5. 类定义
6. 开发相关
7. 反射
8. 正则表达式
9. 集合
10. 线
11. 文件
12. 泛型
13. 本土化
14. Swing
15. Swing事件
16. 二维图形
17. SWT
18. SWT 二维图形
19. 网络
20. 数据库
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web服务SOA
27. EJB3
28. Spring
29. PDF
30. 电子邮件
31. 基于J2ME
32. J2EE应用
33. XML
34. 设计模式
35. 日志
36. 安全
37. Apache工具
38. 蚂蚁编译
39. JUnit单元测试
Java
Java 教程 » Swing » 格式输入控件 
14. 18. 17. It implements a mortgage calculator that uses four JFormattedTextFields
/*
 * Copyright (c) 1995 - 2008 Sun Microsystems, Inc.  All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 *   - Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 *
 *   - Redistributions in binary form must reproduce the above copyright
 *     notice, this list of conditions and the following disclaimer in the
 *     documentation and/or other materials provided with the distribution.
 *
 *   - Neither the name of Sun Microsystems nor the names of its
 *     contributors may be used to endorse or promote products derived
 *     from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.GridLayout;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import java.text.NumberFormat;

import javax.swing.BorderFactory;
import javax.swing.JFormattedTextField;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;

/**
 * FormattedTextFieldDemo.java requires no other files.
 
 * It implements a mortgage calculator that uses four JFormattedTextFields.
 */
public class FormattedTextFieldDemo extends JPanel implements
    PropertyChangeListener {
  // Values for the fields
  private double amount = 100000;
  private double rate = 7.5// 7.5%
  private int numPeriods = 30;

  // Labels to identify the fields
  private JLabel amountLabel;
  private JLabel rateLabel;
  private JLabel numPeriodsLabel;
  private JLabel paymentLabel;

  // Strings for the labels
  private static String amountString = "Loan Amount: ";
  private static String rateString = "APR (%): ";
  private static String numPeriodsString = "Years: ";
  private static String paymentString = "Monthly Payment: ";

  // Fields for data entry
  private JFormattedTextField amountField;
  private JFormattedTextField rateField;
  private JFormattedTextField numPeriodsField;
  private JFormattedTextField paymentField;

  // Formats to format and parse numbers
  private NumberFormat amountFormat;
  private NumberFormat percentFormat;
  private NumberFormat paymentFormat;

  public FormattedTextFieldDemo() {
    super(new BorderLayout());
    setUpFormats();
    double payment = computePayment(amount, rate, numPeriods);

    // Create the labels.
    amountLabel = new JLabel(amountString);
    rateLabel = new JLabel(rateString);
    numPeriodsLabel = new JLabel(numPeriodsString);
    paymentLabel = new JLabel(paymentString);

    // Create the text fields and set them up.
    amountField = new JFormattedTextField(amountFormat);
    amountField.setValue(new Double(amount));
    amountField.setColumns(10);
    amountField.addPropertyChangeListener("value"this);

    rateField = new JFormattedTextField(percentFormat);
    rateField.setValue(new Double(rate));
    rateField.setColumns(10);
    rateField.addPropertyChangeListener("value"this);

    numPeriodsField = new JFormattedTextField();
    numPeriodsField.setValue(new Integer(numPeriods));
    numPeriodsField.setColumns(10);
    numPeriodsField.addPropertyChangeListener("value"this);

    paymentField = new JFormattedTextField(paymentFormat);
    paymentField.setValue(new Double(payment));
    paymentField.setColumns(10);
    paymentField.setEditable(false);
    paymentField.setForeground(Color.red);

    // Tell accessibility tools about label/textfield pairs.
    amountLabel.setLabelFor(amountField);
    rateLabel.setLabelFor(rateField);
    numPeriodsLabel.setLabelFor(numPeriodsField);
    paymentLabel.setLabelFor(paymentField);

    // Lay out the labels in a panel.
    JPanel labelPane = new JPanel(new GridLayout(01));
    labelPane.add(amountLabel);
    labelPane.add(rateLabel);
    labelPane.add(numPeriodsLabel);
    labelPane.add(paymentLabel);

    // Layout the text fields in a panel.
    JPanel fieldPane = new JPanel(new GridLayout(01));
    fieldPane.add(amountField);
    fieldPane.add(rateField);
    fieldPane.add(numPeriodsField);
    fieldPane.add(paymentField);

    // Put the panels in this panel, labels on left,
    // text fields on right.
    setBorder(BorderFactory.createEmptyBorder(20202020));
    add(labelPane, BorderLayout.CENTER);
    add(fieldPane, BorderLayout.LINE_END);
  }

  /** Called when a field's "value" property changes. */
  public void propertyChange(PropertyChangeEvent e) {
    Object source = e.getSource();
    if (source == amountField) {
      amount = ((NumberamountField.getValue()).doubleValue();
    else if (source == rateField) {
      rate = ((NumberrateField.getValue()).doubleValue();
    else if (source == numPeriodsField) {
      numPeriods = ((NumbernumPeriodsField.getValue()).intValue();
    }

    double payment = computePayment(amount, rate, numPeriods);
    paymentField.setValue(new Double(payment));
  }

  /**
   * Create the GUI and show it. For thread safety, this method should be
   * invoked from the event dispatch thread.
   */
  private static void createAndShowGUI() {
    // Create and set up the window.
    JFrame frame = new JFrame("FormattedTextFieldDemo");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    // Add contents to the window.
    frame.add(new FormattedTextFieldDemo());

    // Display the window.
    frame.pack();
    frame.setVisible(true);
  }

  public static void main(String[] args) {
    // Schedule a job for the event dispatch thread:
    // creating and showing this application's GUI.
    SwingUtilities.invokeLater(new Runnable() {
      public void run() {
        // Turn off metal's use of bold fonts
        UIManager.put("swing.boldMetal", Boolean.FALSE);
        createAndShowGUI();
      }
    });
  }

  // Compute the monthly payment based on the loan amount,
  // APR, and length of loan.
  double computePayment(double loanAmt, double rate, int numPeriods) {
    double I, partial1, denominator, answer;

    numPeriods *= 12// get number of months
    if (rate > 0.01) {
      I = rate / 100.0 12.0// get monthly rate from annual
      partial1 = Math.pow((+ I)(0.0 - numPeriods));
      denominator = (- partial1/ I;
    else // rate ~= 0
      denominator = numPeriods;
    }

    answer = (-* loanAmt/ denominator;
    return answer;
  }

  // Create and set up number formats. These objects also
  // parse numbers input by user.
  private void setUpFormats() {
    amountFormat = NumberFormat.getNumberInstance();

    percentFormat = NumberFormat.getNumberInstance();
    percentFormat.setMinimumFractionDigits(3);

    paymentFormat = NumberFormat.getCurrencyInstance();
  }
}
14. 18. 格式输入控件
14. 18. 1. 格式输入控件
14. 18. 2. 字符可以使用的格式掩码
14. 18. 3. JFormattedTextField焦点移走事件
14. 18. 4. JFormattedTextField与SimpleDateFormatJFormattedTextField与SimpleDateFormat
14. 18. 5. 使用DefaultFormatterFactory创建日期格式使用DefaultFormatterFactory创建日期格式
14. 18. 6. 格式化日期和时间输入: DateFormat.SHORT格式化日期和时间输入: DateFormat.SHORT
14. 18. 7. 格式化日期和时间输入: DateFormat.FULL , Locale.US格式化日期和时间输入: DateFormat.FULL , Locale.US
14. 18. 8. Formatted Date and Time Input: DateFormat.MEDIUM, Locale.ITALIANFormatted Date and Time Input: DateFormat.MEDIUM, Locale.ITALIAN
14. 18. 9. Formatted Date and Time Input: new SimpleDateFormat(E, Locale.FRENCH)Formatted Date and Time Input: new SimpleDateFormat(E, Locale.FRENCH)
14. 18. 10. Formatted Date and Time Input: DateFormat.getTimeInstance(DateFormat.SHORT)Formatted Date and Time Input: DateFormat.getTimeInstance(DateFormat.SHORT)
14. 18. 11. Formatted Numeric Input: NumberFormat.getCurrencyInstance(Locale.UK)Formatted Numeric Input: NumberFormat.getCurrencyInstance(Locale.UK)
14. 18. 12. 格式化数字输入: NumberFormat.getInstance ( )格式化数字输入: NumberFormat.getInstance ( )
14. 18. 13. Formatted Numeric Input: NumberFormat.getIntegerInstance(Locale.ITALIAN)Formatted Numeric Input: NumberFormat.getIntegerInstance(Locale.ITALIAN)
14. 18. 14. Formatted Numeric Input: NumberFormat.getNumberInstance(Locale.FRENCH)Formatted Numeric Input: NumberFormat.getNumberInstance(Locale.FRENCH)
14. 18. 15. 格式化数字输入:原号码格式化数字输入:原号码
14. 18. 16. 添加ActionListener到JFormattedTextField添加ActionListener到JFormattedTextField
14. 18. 17. It implements a mortgage calculator that uses four JFormattedTextFields
14. 18. 18. 用行动与文字器件: JFormattedTextField
14. 18. 19. 创建一个文本字段来显示和编辑的电话号码
14. 18. 20. Creating a Text Field to Display and Edit a social security number
14. 18. 21. A decimal number with one digit following the decimal point;
14. 18. 22. BigDecimal对象的自定义格式化
14. 18. 23. 动态变化的格式
14. 18. 24. 支持最新的自定义格式: 2009年1月1日
14. 18. 25. 自定义JFormattedTextField外观
14. 18. 26. 自定义输入文本格式的JFormattedTextField
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.