Vm中一個超鏈接URL需要拼接中文作為Get請求的參數。如果直接拼接,傳到後台Action的參數對象中後取出會是亂碼,需要編碼後再拼接到URL上。
解決方法是在Action中添加一個成員變量,保存編碼後的中文參數。在vm頁面渲染時取出這個變量值,再拼接超鏈接。
在這裡碰到的問題是:調用java.net.URLEncoder的encode()方法時,如果沒有顯示指定字符集參數,那麼URLEncoder會使用默認字符集。這個默認字符集在Eclipse裡跑main()方法和在Tomcat裡跑Web應用,得到的結果不一樣,所以影響了編碼的結果。
復制代碼代碼如下:
/**
* Translates a string into <code>x-www-form-urlencoded</code>
* format. This method uses the platform'sdefault encoding
* as the encoding scheme to obtain thebytes for unsafe characters.
*
* @param s <code>String</code> to betranslated.
* @deprecated The resulting string mayvary depending on the platform's
* default encoding. Instead, use theencode(String,String)
* method to specify the encoding.
* @return the translated <code>String</code>.
*/
@Deprecated
public static String encode(String s) {
String str = null;
try {
str = encode(s, dfltEncName);
} catch(UnsupportedEncodingException e) {
// The system should always have theplatform default
}
return str;
}
方法的注釋中也說明了不建議使用的原因是,這個encode(String)方法依賴於平台字符集。