Convert among Unicode, ASCII and byte/int : Code Unicode « Development Class « Java






Convert among Unicode, ASCII and byte/int

Convert among Unicode, ASCII and byte/int
     
/*
 * Copyright (c) Ian F. Darwin, http://www.darwinsys.com/, 1996-2002.
 * All rights reserved. Software written by Ian F. Darwin and others.
 * $Id: LICENSE,v 1.8 2004/02/09 03:33:38 ian Exp $
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. 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.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
 * 
 * Java, the Duke mascot, and all variants of Sun's Java "steaming coffee
 * cup" logo are trademarks of Sun Microsystems. Sun's, and James Gosling's,
 * pioneering role in inventing and promulgating (and standardizing) the Java 
 * language and environment is gratefully acknowledged.
 * 
 * The pioneering role of Dennis Ritchie and Bjarne Stroustrup, of AT&T, for
 * inventing predecessor languages C and C++ is also gratefully acknowledged.
 */

/** Convert among Unicode, ASCII and byte/int. */
public class UnicodeCast {
  public static void main(String[] args) {

    // Simple arithmetic on chars - VERY BAD for internationalization!
    System.out.println("'a' + 1 = " + (char) ('a' + 1));

    // Truncate characters by casting to byte (16-bit to 8-bit casting)
    char yen = '\u00a5'; // Japanese Yen
    char aeAcute = '\u01FC'; // Roman AE with acute accent
    System.out.println("Yen as byte: " + (byte) yen);
    System.out.println("AE' as byte: " + (byte) aeAcute);
    System.out.println("Yen as byte to char: " + (char) (byte) yen);
    System.out.println("AE' as byte to char: " + (char) (byte) aeAcute);

    // Convert ints to chars
    int iYen = 0xa5;
    int iaeAcute = 0x01fc;
    System.out.println("Yen from int = " + (char) iYen);
    System.out.println("AE' from int = " + (char) iaeAcute);

  }
}

           
         
    
    
    
    
  








Related examples in the same category

1.Unicode sortingUnicode sorting
2.Unicode: Fonts and Text RenderingUnicode: Fonts and Text Rendering
3.Unicode: TrueType Font TestUnicode: TrueType Font Test
4.Unicode: test layoutUnicode: test layout
5.Conversion between Unicode characters and StringsConversion between Unicode characters and Strings
6.Unicode - show a page of Unicode characters
7.Return the Unicode char which is coded in the bytes at the given position.
8.Vis - make special characters visible
9.Demonstrate creating readers and writers with a specific encoding
10.TextArea with UnicodeTextArea with Unicode
11.Unicode displayUnicode display
12.Check if the current character is an 7 bits ASCII CHAR (between 0 and 127). <char> ::= <alpha> | <digit> | '-'
13.Internationalized Graphical User Interfaces: unicode cut and pasteInternationalized Graphical User Interfaces: unicode cut and paste
14.Unicode to ascii
15.Return the Unicode char which is coded in the bytes at position 0.
16.Count the number of bytes needed to return an Unicode char. This can be from 1 to 6.
17.Return the number of bytes that hold an Unicode char.
18.An optimized reader for reading byte streams that only contain 7-bit ASCII characters.
19.Stream Converter UnicodeStream Converter Unicode
20.String Converter UnicodeString Converter Unicode
21.Checks if the String contains only unicode digits or space
22.Checks if the String contains only unicode digits. A decimal point is not a unicode digit and returns false.
23.Checks if the String contains only unicode letters and space (' ').
24.Checks if the String contains only unicode letters or digits.
25.Checks if the String contains only unicode letters, digits or space (' ').
26.Checks if the String contains only unicode letters.
27.Unicode Util
28.Unicode reader
29.Get UTF String Size
30.ASCII 2 NATIVE