是的,你可以做到這一點,但不使用servlet。你需要的是定義,將保留您的所有常用的方法和變量,如下面
public class Common {
public static final String DEFAULT_LANGUAGE = "en"; //better to have private variables with public setters and getters
....
public static String getDateFormatted(.....) {...}
....
}
這是更好地創建一個單獨的數據庫類控制你的數據庫交互的一個通用類。比方說:
public class DBConnection {
private Connection dbCon;
//its more convenient to implement the connect on the no ArgumentCostructor
....
public boolean connect() throws ClassNotFoundException, SQLException {...}
public ResultSet execSQL(...)throws ClassNotFoundException,SQLException {...}
}
如果你想使用一個Java類中的全局參數,你只需要調用
String formatedDate = Common.getDateFormatted(date);
或爲DB連接東西,你可以撥打
DBConnection con = new new DBConnection();
rs = con.execSQL(sql);
感謝MaVRoSCy ..讓我試試你的理念。然後回到你身邊。 –
它工作很酷..謝謝你。 –