Normalizer : UTF8 Byte Hex « Development Class « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Development Class » UTF8 Byte HexScreenshots 
Normalizer
    
/*
 * 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. Convert file in SJIS to UTF8
2. Return an UTF-8 encoded String
3. Return an UTF-8 encoded String by length
4. UTF8 String utilities
5. Return UTF-8 encoded byte[] representation of a String
6. Encodes octects (using utf-8) into Hex data
7. Decodes values of attributes in the DN encoded in hex into a UTF-8 String.
8. converting between byte arrays and hex encoded strings
9. Convert bytes To Hex
10. Convert hex To Bytes
11. Unicode 2 ASCII
12. Make bytes
13. String converterString converter
14. Show unicode stringShow unicode string
15. Convert from UTF-8 to Unicode
16. Convert from Unicode to UTF-8
17. Utility methods for handling UTF-8 encoded byte streams.
18. Read Windows Notepad Unicode files
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.