Post by Chao-Kung Liu.
2012-12-29
2012-10-22
2012-05-18
[筆記] 全腦開發 & 如何跟小孩說話
Trend的社團最近開了幾堂講座,專門講授如何教導孩子。
我覺得非常受用,希望以後能夠讓我的小孩能夠健全發展。
我覺得非常受用,希望以後能夠讓我的小孩能夠健全發展。
2012-03-21
在Eclipse上debug Red5
Step 1, 去RED5官網 SVN check out source code
Step 2, 利用ant Build Project
Step 3, 設定debug 的working directory 位在Red5\dist\
Step 4, Classpath 將User Entries中的預設red5專案移除 改加入Red5\dist\boot.jar
Step 5, Source 加入 red5專案
Step 2, 利用ant Build Project
Step 3, 設定debug 的working directory 位在Red5\dist\
Step 4, Classpath 將User Entries中的預設red5專案移除 改加入Red5\dist\boot.jar
Step 5, Source 加入 red5專案
2012-03-13
SecurityError: Error #2148: SWF 文件 不能訪問本地資源
使用Flash Builder4.5開發時
在debug時 出現了 "SecurityError: Error #2148: SWF 文件 不能訪問本地資源" 錯誤訊息
解決方法
在debug時 出現了 "SecurityError: Error #2148: SWF 文件 不能訪問本地資源" 錯誤訊息
解決方法
2012-03-09
ImageSwitcher 如何傳入網路位置的圖片
Android 的原件 ImageSwitcher 有三種傳入圖片的方式
1.void
setImageDrawable(Drawable drawable)
2.void
setImageResource(int resid)
3.void
setImageURI(Uri uri)
1.
2.
3.
2012-03-01
java.net.URISyntaxException: Illegal character
最近有個需求
需要將字串轉成JSON
再轉成urlencode
再轉base64
再當成參數去call httpget method
轉好base64之後 我發現在new HttpGet時 就會出exception
ex. java.net.URISyntaxException: Illegal character
應該是字串裡有不合法的字元
後來我用URL跳過去
URL url = new URL(urlstr);
URI uri = new URI(url.getProtocol(), url.getHost(), url.getPath(), url.getQuery(), null);
HttpGet httpget = new HttpGet(uri);
需要將字串轉成JSON
再轉成urlencode
再轉base64
再當成參數去call httpget method
轉好base64之後 我發現在new HttpGet時 就會出exception
ex. java.net.URISyntaxException: Illegal character
應該是字串裡有不合法的字元
後來我用URL跳過去
URL url = new URL(urlstr);
URI uri = new URI(url.getProtocol(), url.getHost(), url.getPath(), url.getQuery(), null);
HttpGet httpget = new HttpGet(uri);