Pages : 1
#1 Le 27/06/2007, à 09:23
- maxlegrand
[Java Web Start]Pilote JDBC
Bonjour,
Est-ce que quelqu'un pourrait m'indiquer les quelques lignes à écrire dans le fichier jnlp pour indiquer que l'on utilise les pilotes JDBC dans le programme Java.
Merci
Dernière modification par maxlegrand (Le 27/06/2007, à 17:23)
Hors ligne
#2 Le 29/06/2007, à 16:05
- highflyer
Re : [Java Web Start]Pilote JDBC
dans <resources> </resources>, tiré de http://www.jmdoudoux.fr/java/dej/chap029.htm#chap_29_3
<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.0+" codebase="http://localhost/" href="MonApplication.jnlp">
<information>
<title>Mon Application</title>
<vendor>Jean Michel</vendor>
<homepage href="http://localhost/"/>
<description>Mon application</description>
<description kind="short">une application de test</description>
<offline-allowed/>
</information>
<security>
</security>
<resources>
<j2se version="1.4"/>
<jar href="MonApplication.jar"/>
</resources>
<application-desc main-class="com.moi.dej.jnlp.MonApplication" />
</jnlp>
Pages : 1