1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- package GestionBddDAO;
-
- import java.io.*;
- import java.util.Properties;
-
- public class ConfigBDD
- {
- private Properties conf;
-
- public ConfigBDD() {
- conf = new Properties();
- }
-
- public boolean loadConf()
- {
- try
- {
- conf.loadFromXML(new FileInputStream("conf.xml"));
- return true;
- }
- catch (IOException e)
- {
- loadDefaultConf();
- saveConf();
- System.out.println(e.getMessage());
- return false;
- }
- }
-
- public boolean saveConf()
- {
- try
- {
- conf.storeToXML(new FileOutputStream("conf.xml"), "Configuration de l'aplication de gestion du jeu BurgerQuizz");
- return true;
- }
- catch (IOException e)
- {
- System.out.println(e.getMessage());
- return false;
- }
- }
-
- public void loadDefaultConf()
- {
- conf.setProperty("nomBdd", "burgerquizz");
- conf.setProperty("port", "3306");
- conf.setProperty("ip", "localhost");
- conf.setProperty("login", "alain");
- conf.setProperty("password", "chabat");
- }
-
- public String getNomBdd() {
- return conf.getProperty("nomBdd");
- }
-
- public void setNomBdd(String nomBdd) {
- conf.setProperty("nomBdd", nomBdd);
- }
-
- public int getPort() {
- return Integer.parseInt(conf.getProperty("port"));
- }
-
- public void setPort(int port) {
- conf.setProperty("port", String.valueOf(port));
- }
-
- public String getIp() {
- return conf.getProperty("ip");
- }
-
- public void setIp(String ip) {
- conf.setProperty("ip", ip);
- }
-
- public String getLogin() {
- return conf.getProperty("login");
- }
-
- public void setLogin(String login) {
- conf.setProperty("login", login);
- }
-
- public String getPassword() {
- return conf.getProperty("password");
- }
-
- public void setPassword(String password) {
- conf.setProperty("password", password);
- }
- }
|