归一化 : URF8十六进制 « 开发相关类 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 开发相关类 » URF8十六进制屏幕截图 
归一化
 
/*
 * 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.applet.Applet;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Label;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.text.Normalizer;
import java.util.HashMap;
import java.util.Iterator;

import javax.swing.BoxLayout;
import javax.swing.JComboBox;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JPanel;

public class NormSample extends Applet {
  static final long serialVersionUID = 6607883013849198961L;
  JComboBox normalizationTemplate;
  JComboBox formComboBox;
  JComponent paintingComponent;
  HashMap<String, Normalizer.Form> formValues = new HashMap<String, Normalizer.Form>();
  HashMap<String, String> templateValues = new HashMap<String, String>();

  public static void main(String[] args) {

    // creating an applete for normalization

    JFrame f = new JFrame("Normalizer's API");
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    NormSample applet = new NormSample();
    applet.init();
    f.add("Center", applet);
    f.pack();
    f.setVisible(true);
  }

  public void init() {

    // preparing values for the normalization forms ComboBox

    formValues.put("NFC", Normalizer.Form.NFC);
    formValues.put("NFD", Normalizer.Form.NFD);
    formValues.put("NFKC", Normalizer.Form.NFKC);
    formValues.put("NFKD", Normalizer.Form.NFKD);

    formComboBox = new JComboBox();

    for (Iterator it = formValues.keySet().iterator(); it.hasNext();) {
      formComboBox.addItem((Stringit.next());
    }

    // preparing samples for normalization

    // text with the acute accent symbol
    templateValues.put("acute accent""touch" "\u00e9");

    // text with ligature
    templateValues.put("ligature""a" "\ufb03" "ance");

    // text with the cedilla
    templateValues.put("cedilla""fa" "\u00e7" "ade");

    // text with half-width katakana
    templateValues.put("half-width katakana",
        "\uff81\uff6e\uff7a\uff9a\uff70\uff84");

    normalizationTemplate = new JComboBox();

    for (Iterator it = templateValues.keySet().iterator(); it.hasNext();) {
      normalizationTemplate.addItem((Stringit.next());
    }

    // defining a component to output normalization results

    paintingComponent = new JComponent() {
      static final long serialVersionUID = -3725620407788489160L;

      public Dimension getSize() {
        return new Dimension(550200);
      }

      public Dimension getPreferredSize() {
        return new Dimension(550200);
      }

      public Dimension getMinimumSize() {
        return new Dimension(550200);
      }

      public void paint(Graphics g) {
        Graphics2D g2 = (Graphics2Dg;

        g2.setFont(new Font("Serif", Font.PLAIN, 20));
        g2.setColor(Color.BLACK);
        g2.drawString("Original string:"10080);
        g2.drawString("Normalized string:"100120);
        g2.setFont(new Font("Serif", Font.BOLD, 24));

        // output of the original sample selected from the ComboBox

        String original_string = templateValues.get(normalizationTemplate
            .getSelectedItem());
        g2.drawString(original_string, 32080);

        // normalization and output of the normalized string

        String normalized_string;
        java.text.Normalizer.Form currentForm = formValues.get(formComboBox
            .getSelectedItem());
        normalized_string = Normalizer.normalize(original_string, currentForm);
        g2.drawString(normalized_string, 320120);
      }
    };
    setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
    add(paintingComponent);
    JPanel controls = new JPanel();

    controls.setLayout(new BoxLayout(controls, BoxLayout.X_AXIS));
    controls.add(new Label("Normalization Form: "));
    controls.add(formComboBox);
    controls.add(new Label("Normalization Template:"));
    controls.add(normalizationTemplate);
    add(controls);
    formComboBox.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        paintingComponent.repaint();
      }
    });

    normalizationTemplate.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        paintingComponent.repaint();
      }
    });
  }
}

   
  
Related examples in the same category
1. 转换文件SJIS到UTF8
2. 十六进制字节数组和字符串编码之间转换
3. 转换字节十六进制
4. 十六进制转换为字节
5. ASCII字符到Unicode
6. 创建字节
7. 字符串转换字符串转换
8. 查看统一国家码字符串查看统一国家码字符串
9. 转换UTF-8为统一国家码字符
10. 转换统一国家码为UTF-8
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.