Guest User

Untitled

a guest
Jul 16th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. private static Properties prop;
  2. private static String index;
  3. static void loadConfigurationFile() throws IOException{
  4. prop = new Properties();
  5. FileInputStream propertiesFile;
  6.  
  7. propertiesFile = new FileInputStream("/home/dani/Dropbox/Segundo Grado/Segundo Cuatrimestre/Redes/P2/WebServer/conf/server.conf");
  8. prop.load(propertiesFile);
  9. index=prop.getProperty("DIRECTORY_INDEX");
  10.  
  11. }
Add Comment
Please, Sign In to add comment