惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V2EX - 技术
V2EX - 技术
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
T
Threat Research - Cisco Blogs
T
The Exploit Database - CXSecurity.com
S
Schneier on Security
S
Securelist
P
Privacy & Cybersecurity Law Blog
Scott Helme
Scott Helme
T
Threatpost
C
Cybersecurity and Infrastructure Security Agency CISA
L
LINUX DO - 热门话题
Cyberwarzone
Cyberwarzone
Cisco Talos Blog
Cisco Talos Blog
量子位
博客园 - Franky
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Latest news
Latest news
T
Troy Hunt's Blog
N
News | PayPal Newsroom
Google Online Security Blog
Google Online Security Blog
Apple Machine Learning Research
Apple Machine Learning Research
N
Netflix TechBlog - Medium
小众软件
小众软件
P
Palo Alto Networks Blog
Spread Privacy
Spread Privacy
C
Cyber Attacks, Cyber Crime and Cyber Security
C
Check Point Blog
aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
L
Lohrmann on Cybersecurity
L
LINUX DO - 最新话题
D
Darknet – Hacking Tools, Hacker News & Cyber Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Last Watchdog
The Last Watchdog
S
Security @ Cisco Blogs
P
Privacy International News Feed
Last Week in AI
Last Week in AI
Microsoft Security Blog
Microsoft Security Blog
T
Tailwind CSS Blog
博客园_首页
云风的 BLOG
云风的 BLOG
V
Vulnerabilities – Threatpost
D
DataBreaches.Net
Recent Announcements
Recent Announcements
酷 壳 – CoolShell
酷 壳 – CoolShell
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
罗磊的独立博客
Engineering at Meta
Engineering at Meta
Forbes - Security
Forbes - Security
T
Tenable Blog

博客园 - waya

解決MySQL中文亂碼 java的圖像縮略方法 攝影用光 Flex調試工具Flextracepanel linux下安裝JDK5 Installing Flex Data Services on JBoss 得到不同時區的當前時間 - waya - 博客园 Flex實現的一些小應用,截幾個界面圖留驗 一個便宜的高负载网站架构 同時啟動多個Tomcat服務器 - waya - 博客园 在同一臺機器上同時啟動多個JBOSS spring2與spring1的單例模式的配置區別 Flex的多行表頭 Trace到文件的設置 開啟整屏窗口並無痕關閉父窗口 隱藏顯示表格行;確認提示窗口;開啟定制窗口 Log4j日志异步写入數據庫 時間字符串轉換 URL编码表一览
參數URL編碼
waya · 2006-12-13 · via 博客园 - waya

自定義一個JSP標簽,對參數進行URL編碼轉換:

import java.io.IOException;
import java.io.UnsupportedEncodingException;

import javax.servlet.jsp.JspException;
import javax.servlet.jsp.JspWriter;
import javax.servlet.jsp.tagext.BodyContent;
import javax.servlet.jsp.tagext.BodyTagSupport;
import javax.servlet.jsp.tagext.TagSupport;

/**
 * 對字符進行URL編碼.
 * 
 * 
@author wang
 * 
 
*/

public class URLEncoderTag extends BodyTagSupport {

    
/**
     * 
     
*/

    
private static final long serialVersionUID = 1L;

    
public int doStartTag() throws JspException {
        
return TagSupport.EVAL_BODY_AGAIN;
    }


    
public int doAfterBody() throws JspException {
        BodyContent body 
= getBodyContent();// 得到標簽主體的內容
        String b = body.getString();
        JspWriter out 
= body.getEnclosingWriter();
        
try {
            b
=b.replaceAll("&""&");
            b
=b.replaceAll("&lt;""<");
            b
=b.replaceAll("&gt;"">");
            b
=b.replaceAll("&quot;""\"");
            b=b.replaceAll("&nbsp;""");
            b
=b.replaceAll("""-");
            b
=b.replaceAll("""");
            b
=b.replaceAll("""");
            b
=b.replaceAll("'""\'");
            String s
=java.net.URLEncoder.encode(b.trim(), "UTF-8");
            out.write(s);
// 對標簽主體的內容進行URL編碼
        }
 catch (IOException e) {
            
// TODO Auto-generated catch block
            e.printStackTrace();
        }

        
return TagSupport.SKIP_BODY;
    }


}

codetag.tld文件:

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE taglib
  PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN"
  "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd"
>
<taglib>
    
<tlibversion>1.0</tlibversion>
    
<jspversion>1.1</jspversion>
    
<shortname>Application Tag Library</shortname>
    
<info></info>
    
<tag>
        
<name>urlencoder</name>
        
<tagclass>標簽類的類名</tagclass>
    
</tag>
</taglib>

JSP中使用標簽:

<%@taglib uri="/tags/code-tag" prefix="code"%>
<href="imageview.jsp?partNo=<code:urlencoder>AB&&#@TT</code:urlencoder>">測試</a>

服務端解碼:

java.net.URLDecoder.decode(客戶端轉來的值,"UTF-8");