Board logo

标题: URL在Java编程中的处理 [打印本页]

作者: look_w    时间: 2019-2-18 12:35     标题: 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




欢迎光临 电子技术论坛_中国专业的电子工程师学习交流社区-中电网技术论坛 (http://bbs.eccn.com/) Powered by Discuz! 7.0.0