Package Versioning

I get the following output:

package josebotella.fr

Aplicacion: null

Version: null

Autor: null

when executing the following code:

static void printVersion() {

Package pac = Package.getPackage("josebotella.fr");

System.out.println(pac);//for debugging

System.out.println("Aplicacion: " + pac.getImplementationTitle());

System.out.println("Version: " + pac.getImplementationVersion());

System.out.println("Autor: " + pac.getImplementationVendor());

System.exit(0);

}

the manifest file is:

Manifest-Version: 1.0

Main-Class: josebotella.fr.FindReplace

Created-By: 1.3.0_02 (Sun Microsystems Inc.)

Name: josebotella/fr/

Implementation-Vendor: "Jose Botella Rojas"

Implementation-Version: "1.1"

Implementation-Title: "Buscador reemplazador de cadenas"

I have left two empty lines after the last one

The package is recognized because the output shows josebotella.fr

It seems there is something wrong with the implementation... lines

Any help would be greatly appreciated.

[1142 byte] By [Botella] at [2007-9-26 2:48:59]
# 1

Yesterday it did not work. Today it worked out.

Hey that reminds me a SO known by everyone.

I just deleted the manifest file and I made a new one with the exact same information

So I do not know where the problem was. Maybe a hidden character in the file introduced by the word processor? How strange!

Botella at 2007-6-29 10:34:38 > top of Java-index,Desktop,Deploying...