java×Ö·û´®µÄ¸÷ÖÖ±àÂëת»»¡¾×ªÌù¡¿
import java.io.UnsupportedEncodingException;
¡¡¡¡/**
¡¡¡¡* ת»»×Ö·û´®µÄ±àÂë
¡¡¡¡*/
¡¡¡¡public class ChangeCharset
{
¡¡¡¡/** 7λASCII×Ö·û£¬Ò²½Ð×÷ISO646-US¡¢Unicode×Ö·û¼¯µÄ»ù±¾À¶¡¿é */
¡¡¡¡public static final String US_ASCII = "US-ASCII";
¡¡¡¡/** ISO À¶¡×Öĸ±í No.1£¬Ò²½Ð×÷ ISO-LATIN-1 */
¡¡¡¡public static final String ISO_8859_1 = "ISO-8859-1";
¡¡¡¡/** 8 λ UCS ת»»¸ñʽ */
¡¡¡¡public static final String UTF_8 = "UTF-8";
¡¡¡¡/** 16 λ UCS ת»»¸ñʽ£¬Big Endian£¨×îµÍµØÖ·´æ·Å¸ßλ×Ö½Ú£©×Ö½Ú˳Ðò */
¡¡¡¡public static final String UTF_16BE = "UTF-16BE";
¡¡¡¡/** 16 λ UCS ת»»¸ñʽ£¬Little-endian£¨×î¸ßµØÖ·´æ·ÅµÍλ×Ö½Ú£©×Ö½Ú˳Ðò */
¡¡¡¡public static final String UTF_16LE = "UTF-16LE";
¡¡¡¡/** 16 λ UCS ת»»¸ñʽ£¬×Ö½Ú˳ÐòÓÉ¿ÉÑ¡µÄ×Ö½Ú˳Ðò±ê¼ÇÀ´±êʶ */
¡¡¡¡public static final String UTF_16 = "UTF-16";
¡¡¡¡/** ÖÐÎij¬´ó×Ö·û¼¯ */
¡¡¡¡public static final String GBK = "GBK";
¡¡¡¡/**
¡¡¡¡* ½«×Ö·û±àÂëת»»³ÉUS-ASCIIÂë
¡¡¡¡*/
¡¡¡¡public String toASCII(String str) throws UnsupportedEncodingException
{
¡¡¡¡ return this.changeCharset(str, US_ASCII);
¡¡¡¡}
¡¡¡¡/**
¡¡¡¡* ½«×Ö·û±àÂëת»»³ÉISO-8859-1Âë
¡¡¡¡*/
¡¡¡¡public String toISO_8859_1(String str) throws UnsupportedEncodingException
{
¡¡¡¡ return this.changeCharset(str, ISO_8859_1);
¡¡¡¡}
¡¡¡¡/**
¡¡¡¡* ½«×Ö·û±àÂëת»»³ÉUTF-8Âë
¡¡¡¡*/
¡¡¡¡public String toUTF_8(String str) throws UnsupportedEncodingException
{
¡¡¡¡ return this.changeCharset(str, UTF_8);
¡¡¡¡}
¡¡¡¡/**
¡¡¡¡* ½«×Ö·û±àÂëת»»³ÉUTF-16BEÂë
¡¡¡¡*/
¡¡¡¡public String toUTF_16BE(String str) throws UnsupportedEncodingException
{
¡¡¡¡ return this.changeCharset(str, UTF_16BE);
¡¡¡¡}
¡¡¡¡/**
¡¡¡¡* ½«×Ö·û±àÂëת»»³ÉUTF-16LEÂë
¡¡¡¡*/
¡¡¡¡public String toUTF_16LE(String str) throws UnsupportedEncodingException
{
¡¡¡¡ return this.changeCharset(str, UTF_16LE);
¡¡¡¡}
¡¡¡¡/**
¡¡¡¡* ½«×Ö·û±àÂëת»»³ÉUTF-16Âë*/
¡¡¡¡public String toUTF_16(String str) throws UnsupportedEncodingException
{
Ïà¹ØÎĵµ£º
JavaÓïÑÔ¶¨ÒåÁËpublic¡¢protected¡¢private¡¢abstract¡¢staticºÍfinalÕâ6ÖÖ³£ÓÃÐÞÊδÊÍ⻹¶¨ÒåÁË5¸ö²»Ì«³£ÓõÄÐÞÊδʣ¬ÏÂÃæÊǶÔÕâ11¸öJavaÐÞÊδʵĽéÉÜ£º
1.public
ʹÓöÔÏó£ºÀà¡¢½Ó¿Ú¡¢³ÉÔ±
½éÉÜ£ºÎÞÂÛËüËù´¦Ôڵİü¶¨ÒåÔÚÄÄ£¬¸ÃÀࣨ½Ó¿Ú¡¢³ÉÔ±£©¶¼ÊǿɷÃÎʵÄ
2.private
ʹÓöÔÏ󣺳ÉÔ±
½éÉÜ£º³ÉÔ ......
Îļþ¶ÔÏóµÄÉú³ÉºÍÎļþµÄ´´½¨
/*
* ProcessFileName.java
*
* Created on 2006Äê8ÔÂ22ÈÕ, ÏÂÎç3:10
*
* Îļþ¶ÔÏóµÄÉú³ÉºÍÎļþµÄ´´½¨
*/
package study.iostudy;
import java.io.*;
public class GenerateFile
{
public static void main(String ......
import java.lang.reflect.Array;
public class ReflectionTest {
public static void main(String[] args) {
try {
Example obj = new Example();
j ......
import java.io.FileInputStream;
public class FileCopy{
public static void main(String[] args){
try{
&nb ......