J2ME中访问网页对Url中的中文进行编码

/*
 * URLEncoder.java
 *
 * Created on 2009年7月15日, 下午4:17
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package com.*

import java.io.*;

/**
 *
 * @author Todd.Zhang
 */
public class URLEncoder {
    private static final int MAX_BYTES_PER_CHAR = 10; // rather arbitrary limit, but safe for now
    private static boolean[] dontNeedEncoding;
    private static String defaultEncName = "";
    private static final int caseDiff = ('a' - 'A');

    static
    {
        dontNeedEncoding = new boolean[256];
        for (int i='a'; i<='z'; i++)
        {
            dontNeedEncoding[i] = true;
        }
        for (int i='A'; i<='Z'; i++)
        {
            dontNeedEncoding[i] = true;
        }
        for (int i='0'; i<='9'; i++)
        {
            dontNeedEncoding[i] = true;
        }
        dontNeedEncoding[' '] = true;
        dontNeedEncoding['-'] = true;
        dontNeedEncoding['_'] = true;
        dontNeedEncoding['.'] = true;
        dontNeedEncoding['*'] = true;
        //defaultEncName = System.getProperty("microedition.encoding");
        if(defaultEncName == null || defaultEncName.trim().length() == 0){
            defaultEncName = "UTF-8";
        }
    }
    public static final int MIN_RADIX = 2;
    public static final int MAX_RADIX = 36;
    private URLEncoder() {}

    public static String encode(String s)
    {
        String str = null;
        str = encode(s, defaultEncName);
        return str;
    }
   
    public static String encode(String s,String enc)
    {
        boolean needToChange = false;
        boolean wroteUnencodedChar = false;
        StringBuffer out = new StringBuffer(s.length());
        ByteArrayOutputStream buf = new ByteArrayOutputStream(MAX_BYTES_PER_CHAR);
        OutputStreamWriter writer = null;
        try
        {
            writer = new OutputStreamWriter(buf, enc);
        }
        catch (UnsupportedEncodingException ex)
        {
            try
            {
                writer = new OutputStreamWriter(buf,defaultEncName);
            }
            catch (UnsupportedEncodingException e)
            {
                //never reach
            }
        }
        for (int i = 0; i < s.length(); i++)
        {
            int c = (int) s.charAt(i);
            if (c<256 && dontNeedEncoding[c])
            {
                out.append((char) (c==' ' ? '+' : c));
                wroteUnencodedChar = true;
            }
            else
            {
                // convert to external encoding before hex conversion
                try
                {
                    if (wroteUnencodedChar)
                    { // Fix for 4407610
                        writer = new OutputStreamWriter(buf,enc);
                        wroteUnencodedChar = false;
                    }
                    if(writer != null)
                        writer.write(c);
                    /*
                    * If this character represents the start of a Unicode
                    * surrogate pair, then pass in two characters. It's not
                    * clear what should be done if a bytes reserved in the
                    * surrogate pairs range occurs outside of a legal surrogate
                    * pair. For now, just treat it as if it were any other
                    * character.
                    */
                    if (c >= 0xD800 && c <= 0xDBFF)
                    {
                        if ((i + 1) < s.length())
                        {
                            int d = (int) s.charAt(i + 1);
                            if (d >= 0xDC00 && d <= 0xDFFF)
                            {
                                writer.write(d);
                                i++;
                            }
                        }
                    }
                    writer.flush();
                }
                catch (IOException e)
                {
                    buf.reset();
                    continue;
                }
                byte[] ba = buf.toByteArray();
                for (int j = 0; j < ba.length; j++)
                {
                    out.append('%');
                    char ch = toHex((ba[j] >> 4) & 0xF,16);
                    // converting to use uppercase letter as part of
                    // the hex value if ch is a letter.
                    if (isLetter(ch))
                    {
                        ch -= caseDiff;
                    }
                    out.append(ch);
                    ch = toHex(ba[j] & 0xF,16);
                    if (isLetter(ch))
                    {
                        ch -= caseDiff;
                    }
                    out.append(ch);
                }
                buf.reset();
                needToChange = true;
            }
        }
        return (needToChange? out.toString() : s);
    }

    private static char toHex(int digit,int radix)
    {
        if ((digit >= radix) || (digit < 0))
        {
            return '/0';
        }
        if ((radix < MIN_RADIX) || (radix > MAX_RADIX))
        {
            return '/0';
        }

        if (digit < 10)
        {
            return (char)('0' + digit);
        }
        return (char)('a' - 10 + digit);
    }

    private static boolean isLetter(char c)
    {
        if( (c >= 'a' && c <= 'z') || (c >='A' && c <= 'Z'))
            return true;
        return false;
    }
}

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值