|
NOTA: La traducción de esta documentación es un esfuerzo personal y voluntario, no es un documento oficial de Sun Microsystems
ni Oracle ni está patrocinado por ninguna de estas empresas. Los documentos originales (en inglés) están disponibles en:
http://java.sun.com/docs/books/tutorial/.
Dirija cualquier comentario, petición, felicitación, etc. a tutorialesjava_@RROBA_codexion.com. |
Si desea ayudar a mantener en funcionamiento esta web, colaborar con la traducción de estos documentos o necesita que se traduzca algĂșn capĂtulo en concreto puede realizar una donación directa mediante Paypal:
|
The steps Chris would take, after creating the
HighScoreandHighScorePermissionclasses, are:
javac HighScore*.java -d .
jar cvf hs.jar com/scoredev/scores/HighScore*.class
keytool -genkey -keystore chris.keystore -alias signJars
Specify whatever you want for the passwords and distinguished name information.
jarsigner -keystore chris.keystore hs.jar signJars
keytool -export -keystore chris.keystore
-alias signJars -file Chris.cer
That is, supply them
- the signed JAR File
hs.jar,
- the public key certificate file
Chris.cer, and
- information as to the permissions the
HighScoreandHighScorePermissionclasses must be granted in a policy file in order to work. For this, Chris could supply the exact grant entry needed.