Does this page look strange? Perhaps you should try a browser, that really supports CSS, like Mozilla. Here's a picture of how this page should look.
HomeGreetingsHobbyTravelContact?
My Software Recipes: Java - Property file from classpath

The Problem:

I wanted to read a property file from the classpath.

The Solution:

A property file called test.properties in the classpath.

URL url =  ClassLoader.getSystemResource("test.properties");
Properties p = new Properties();
p.load(new FileInputStream(new File(url.getFile())));

System.out.println(p.getProperty("my.property"));

HomeGreetingsHobbyTravelContact?