發表文章

目前顯示的是 10月, 2010的文章

Struts Action 中調用 Servlet Function

用到的機會不多啦...不過還是有可能會用到... 從Struts Action中呼叫Servlet 且先調用Servlet中的init()做參數的設定使用 MealHitLogServlet servlet = new MealHitLogServlet(); ServletConfig sc=getServlet().getServletConfig(); try { servlet.init(sc); } catch (ServletException e) { e.printStackTrace(); } servlet.addHitLog(String.valueOf(venderNo), String.valueOf(mealId)); PS: Servlet 3.0就有支援Async invoke了,會更方便唷~

jQuery iframe access

取iframe中文件的source: $ ( '#iframeID' ) . contents ( ) . find ( 'html' ) . html ( ) ; 許某個id的內文: $ ( '#iframeID' ) . contents ( ) . find ( '#someID' ) . html ( ) ;

jQuery移除頁面超連結,僅顯示文字

有時候很需要頁面上所有超連結都不可以被存取,下面這段code可以將超連結移除,僅留下超連結的內文 $('a').each(function(index) {     $(this).replaceWith($(this).html()); });

Windows 網路+路由設定指令

netsh interface ip add address "區域連線" 10.255.20.20 255.255.255.0 netsh interface ip add address "區域連線" gateway=10.255.20.1 gwmetric=2 netsh interface ip add dns "區域連線" 168.95.1.1 netsh interface ip add dns "區域連線" 172.18.192.8 無線網路連線 netsh interface ip add dns "無線網路連線" 168.95.1.1 route delete 0.0.0.0 route add 0.0.0.0 mask 0.0.0.0 192.168.1.1 route add 10.0.0.0 mask 255.0.0.0 172.18.115.1 route add 172.0.0.0 mask 255.0.0.0 172.18.115.1 route add 192.0.0.0 mask 255.0.0.0 172.18.115.1 route print pause

SSH小技巧

Ctrl-s = Xoff (stops the flow) Ctrl-q = Xon (resumes the flow)

Regulare Expression

置換單純TAG的Shell語法~ echo "<tab>ABC</tab>" | sed -e 's/<[\/,a-z,A-Z,0-9]*>//g'