Changes between Version 11 and Version 12 of waue/2010/0805
- Timestamp:
- Sep 15, 2011, 5:02:40 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
waue/2010/0805
v11 v12 4 4 JSP 支援多國語系 5 5 </big></big></big></div> <div style="text-align: center; color:#7E2217"><big style="font-weight: bold;"><big> 6 Tomcat + JSP + i18n + taglib 6 Tomcat + JSP + i18n + taglib + utf-8 轉碼法 7 7 </big></big></div> 8 8 }}} 9 9 [[PageOutline]] 10 10 11 11 = update = 12 * 2011/09/15 補充 utf 8 轉碼法 12 13 = 環境 = 13 14 … … 99 100 100 101 === i18n_zh_TW.properties === 101 * utf8 轉碼工具 [http://www.tool.la/UTF-8/] 102 102 103 103 104 || Tomcat || $_tomcat_/webapps/$_project_/WEB-INF/classes/org/mytest/i18n_zh_TW.properties || … … 109 110 test2 = 你現在已經能讓你的JSP使用I18N的taglib跟世界接軌囉! 110 111 }}} 112 113 111 114 112 115 == 3. JSP 程式碼 == … … 186 189 187 190 }}} 191 192 = utf-8 轉碼工具 = 193 == 網頁工具 == 194 * 網頁轉碼工具 [http://www.tool.la/UTF-8/] 195 文字資訊轉檔 196 197 == java 工具 == 198 * java 的自帶工具 199 此方法為整份文件轉檔的好招 200 201 先建立中文properties 檔(取名為 lang_zh_TW.properties.temp) 202 203 === 中->碼 === 204 中文 => utf8碼 (歡 -> \u5c1a) 205 {{{ 206 /usr/lib/jvm/java-6-sun/bin/native2ascii lang_zh_TW.properties.temp lang_zh_TW.properties 207 }}} 208 209 則 lang_zh_TW.properties 完成 210 211 === 碼->中 === 212 之後若要修改,可用還原指令: 213 214 utf8碼 => 中文 (\u5c1a -> 歡) 215 {{{ 216 /usr/lib/jvm/java-6-sun/bin/native2ascii -reverse lang_zh_TW.properties lang_zh_TW.properties.temp 217 }}} 218 219