2009-08-28

Java Properties

屬性設定
可以將一些屬性設定獨立於一個 xxx.properties 檔中(xxx自由定義),由程式讀取,若要修改屬性則直接修改.properties檔案即可。日後要更改資訊時,只要更改文字檔.properties內容,而不用重新編譯程式。
使用java.util.Properties來讀取這個屬性設定檔,根據key來取得value.


.properties Example (=左邊設定的是key,右邊是value) :

driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/GUESTBOOK
user=xxx
password=xxx


Java Example:

import java.sql.*;

public class Demo {
private static Properties props;

private static void loadProperties() {
props = new Properties();
try {
props.load(new FileInputStream("config.properties"));
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}

private static String getConfig(String key) {
return props.getProperty(key);
}

public static void main(String[] args) {
loadProperties();

String driver = getConfig("driver");
String url = getConfig("url");
String user = getConfig("user");
String password = getConfig("password");

2009-08-26

JRUBY ON RAILS

SUN microsystem 換東家了. JRUBY 也轉台出走了new_link.

Running Your First Rails Application on JRuby link

Running a JRuby on Rails Application on Tomcat link

JRuby on Rails on Google App Engine link

2009-08-23

乳清蛋白 & 肌酸

乳清蛋白加肌酸:運動後加大肌肉組織用,迅速消除疲勞。
多天的自助旅遊或運動, 常在第1天以後都是酸痛與疲勞不斷. 也許可以試看看搭配乳清蛋白加肌酸.

日曬後起疹子

多形性日光疹 link
台灣對陽光過敏的人口不少,會引起病人對陽光過敏的皮膚病有許多種,台灣最常見的是「多形性日光疹」,病人於日曬後會冒出變化多端的疹子(圖1至5),這是此病得名的由來。

光過敏皮膚炎 / 光過敏反應和癢疹
吃藥,或擦藥膏,疹子就可以消退,不過醫師建議,平常適時的曬太陽,或做好防曬,就是預防光過敏的最好方法。