this.getClass().getResource("/").getPath().substring(1) O caminho obtido é E:/myeclipse/test/WebRoot/WEB-INF/classes/, que é o diretório inicial.
this.getClass().getResource("").getPath().substring(1) O caminho obtido é E:/myeclipse/test/WebRoot/WEB-INF/classes/net/hncu/db/, que é o relativo caminho deste caminho de arquivo.
this.getClass().getResource(".").getPath().substring(1) tem o mesmo efeito que this.getClass().getResource("").getPath().substring(1)