URL在Java编程中的处理

URL在Java编程中的处理
 
URL解码编码在Java中主要用到java.net包中的两个工具类来处理:
URLDecoder HTML 格式解码的实用工具类。
URLEncoder HTML 格式编码的实用工具类。
 
下面给个例子:
 
import java.net.URLEncoder;
import java.net.URLDecoder;
import java.io.UnsupportedEncodingException;

/**
* URL在Java编程中的处理
* File: TestURL.java
* User: leizhimin
* Date: 2008-3-17 16:23:39
*/
public class TestURL {
     /**
     * 将 String 转换为 application/x-www-form-urlencoded MIME 格式的串
     * @param filepath 要转换的目标的字符串,GBK格式
     * @return 以UTF-8编码的字符串
     * @throws UnsupportedEncodingException
     */
     public static String testURLEncoder(String filepath) throws UnsupportedEncodingException {
        String wwwurl = URLEncoder.encode(filepath, "UTF-8");
         return wwwurl;
    }

     /**
     * 将 String 从 application/x-www-form-urlencoded MIME 格式解码为UTF8格式的字符串
     * @param wwwurl 要转换的目标的字符串,application/x-www-form-urlencoded MIME 格式
     * @return UTF8格式的字符串
     * @throws UnsupportedEncodingException
     */
     public static String testURLDecoder(String wwwurl) throws UnsupportedEncodingException {
        String filepath_new = URLDecoder.decode(wwwurl, "UTF-8");
         return filepath_new;
    }

     public static void main(String args[]) throws UnsupportedEncodingException {
        String filepath = "D:\\My Documents\\我接收到的文件\\20_save.gif";
        String wwwurl = testURLEncoder(filepath);
        String filepath_new = testURLDecoder(wwwurl);

        System.out.println(filepath);
        System.out.println(wwwurl);
        System.out.println(filepath_new);
    }
}
 
运行结果:
D:\My Documents\我接收到的文件\20_save.gif
D%3A%5CMy+Documents%5C%E6%88%91%E6%8E%A5%E6%94%B6%E5%88%B0%E7%9A%84%E6%96%87%E4%BB%B6%5C20_save.gif
D:\My Documents\我接收到的文件\20_save.gif

Process finished with exit code 0
 

你可能感兴趣的:(java,编程,url,处理,休闲)