blogspot.com-GA4

星期五, 8月 22, 2008

CSS 實現網頁分頁效果

來源:w3schools

就是在指定的地方加入css標籤,進行換頁的動作

參考範例:

<div STYLE="page-break-after: always;"> 第一頁 </div>
第二頁

<P style='page-break-after:always'>&nbsp;</P>
第二頁

星期四, 8月 14, 2008

用正規表顯示千位貨幣顯示方式

<script language="JavaScript">

<!--

n="1279834847944074100465236.33"

re=/(\d{1,3})(?=(\d{3})+(?:$|\.))/g

n1=n.replace(re,"$1,")

alert(n+"\r\n"+n1)

//-->

</script>

星期二, 8月 05, 2008

解 Java class 檔案的 version

轉載 了解 Java class 檔案的 major.minor version
http://hkdennis2k.homeip.net/2007/12/08/%E8%BD%89%E8%BC%89-%E4%BA%86%E8%A7%A3-java-class-%E6%AA%94%E6%A1%88%E7%9A%84-majorminor-version/

每個編譯出來的 class 檔案擋頭都會有編寫 該class 檔案編譯的version 已達到其相容性

星期五, 8月 01, 2008

2008年度 java top 5 技術

Carlos Perez: Top Five Java Technologies to Learn in 2008

完整文章:http://www.theserverside.com/news/thread.tss?thread_id=48270

Posted by: Joseph Ottinger on ? 30, 2008 DIGG
Carlos Perez has posted his list of the top five Java-based technologies to learn in 2008. They are:

* OSGi (a specification for dynamic modules for Java)
* The Java Content Repository spec, first appearing in the JCP in February 2002
* Google Web Toolkit (first released in May, 2006)
* Groovy (first released in May, 2004)
* Cloud computing (a concept designed around the use of virtual servers, or distributed computing without the use of EJB)

Java: 淺談 OSGi 標準-愛德華日誌 (轉)

Java: 淺談 OSGi 標準

參考來源:
愛德華日誌
維基百科

OSGi 起源於1999 年三月,是由一些家用閘道器相關產業廠商所組合而成的組織,目前約有八十餘家廠商加入。包括了 IBM、Sun、BMW、Motorola、Nortel、Nokia、 Philips、Panasonic、Sony、Toshiba、Echelon 等。目前最新的標準是OSGi Specification 3.0。

當初制定OSGi 標準的最主要的目的,是要為遠端的服務提供者 (Service Provider) 與本地端的設備 (Device) 之間提供完整的點對點服務傳送解決方案。因此,OSGi 定義了一個開放性的平台,使得遠端軟體服務供應商所提供的應用程式 及加值服務,能視使用者需求,隨時下載至靠近用戶的閘道器 (Gateway) 上,並且自動安裝執行,而這裡所指的閘道器通常是連接家庭網路(Home Network)、辦公室網路 (Office Network) 與廣域網路間的一個裝置,如機上盒 (Set-top Box;STB)、ADSL數據機、纜線數據機 (Cable Modem)、住宅區閘道器 (Residential Gateway)等。透過這個開放性的平台,不同廠商所開發出的服務軟體及設備都能互相溝通及搭配使用。

在 OSGi 網站上的 FAQ 中,指出 OSGi 應用方向包括:

  • Services in the Home:
    • Communication
    • Information/entertainment
    • Safety and security monitoring
    • Energy management and metering
    • Appliance diagnostics and servicing
    • Telemedicine and healthcare monitoring
  • Services in the Car:
    • Navigation
    • Emergency assistance
    • Mobile commerce
    • Information/entertainment
    • Vehicle diagnostics
    • Location-based services

Again, we see java succeeded in J2ME. We can see many big-name companies in the OSGi member name list which include many companies come from many industries.

最近 OSGi 在軟體業最為人雀躍的發展,莫過於 Eclpise Java IDE 支援 OSGi 標準。這是一個有趣的現象,本來是設計給其他產業的運用,卻在軟體業也有不凡的表現。這也讓我想起 Java 的發展歷史,本來也是為了 embedded 系統而設計,卻意外的在 internet 竄起的年代獲得各方的矚目,更在 enterprise application 中立於不敗之地...

JMXOSGi 在功能上的許多重疊之處,在國外已經有人討論過 (例如 Eclipse Embeds OSGi Based MicroKernelJMX vs. OSGi - The New Flavor of the Eclipse Runtime)。不過我認為重點是:

  1. JMX 本來設計的用途就只為了管理,我們不該把他拿來 (over use) 作為開發應用程式的元件 (那是 EJB 或 JavaBeans 該做的事)。但 OSGi 卻可以!
  2. JMX 多數用於 server 系統中,而 OSGi 卻不限於所開發的應用程式。你可以用它開發 embedded 系統、desktop 程式,甚至是 server 程式。

OSGi 不但提供了與 JMX 相似的容器管理能力,甚至它本身就是一套精密的 Framework。OSGi 採用Micro-Kernel 的架構,可以提供無限延伸的功能。OSGi 的 Bundles 線上更新功能、以及應用程式之微量記憶體執行能力,都是開發應用程式的利基。

OSGi 與 J2EE 在設計上,我覺得完全是兩種思維模式:J2EE 的思維是 build on large scale,OSGi 的思維是 build on dynamic scale。OSGi 以小搏大...

OSGi Resources:

註:

目前我看到與 OSGi 有關的 JSR 為:

  • JSR 8: Open Services Gateway Specification (OSGi)
  • JSR 232: Mobile Operational Management