Bonsoir, depuis quelques jours j'essaie de crée un launcher, et j'ai un gros problème, en cherchant tout seul je n'ai pas réussis à le résoudre. Donc je vous demande de m'aider.
Quand je débug pour tester le Launcher cela écrit dans la Console :
Je ne comprends pas mon problème ... Mes lignes de :
GameUpdater ligne 454 (plus ou moin) :
GameUpdate ligne 303 (plus ou moin) :
Launcher ligne 85 (plus ou moin) :
Merci, bonne soirée.
Quand je débug pour tester le Launcher cela écrit dans la Console :
Code:
at java.net.AbstractPlainSocketImpl.connect(Unknown Source)
at java.net.PlainSocketImpl.connect(Unknown Source)
at java.net.SocksSocketImpl.connect(Unknown Source)
at java.net.Socket.connect(Unknown Source)
at java.net.Socket.connect(Unknown Source)
at sun.net.NetworkClient.doConnect(Unknown Source)
at sun.net.www.http.HttpClient.openServer(Unknown Source)
at sun.net.www.http.HttpClient.openServer(Unknown Source)
at sun.net.www.http.HttpClient.<init>(Unknown Source)
at sun.net.www.http.HttpClient.New(Unknown Source)
at sun.net.www.http.HttpClient.New(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
at net.minecraft.GameUpdater.downloadJars(GameUpdater.java:454)
at net.minecraft.GameUpdater.run(GameUpdater.java:303)
at net.minecraft.Launcher$1.run(Launcher.java:85)
GameUpdater ligne 454 (plus ou moin) :
Code:
/* 419 */ if ((urlconnection instanceof HttpURLConnection)) {
/* 420 */ urlconnection.setRequestProperty("Cache-Control", "no-cache");
/* 421 */ urlconnection.connect();
/* */ }
/* */
/* 424 */ String currentFile = getFileName(this.urlList[i]);
/* 425 */ InputStream inputstream = getJarInputStream(currentFile, urlconnection);
/* 426 */ FileOutputStream fos = new FileOutputStream(path + currentFile);
GameUpdate ligne 303 (plus ou moin) :
Code:
/* */
/* */ }
/* */ catch (Exception localException1)
/* */ {
/* */ }
/* */
/* 308 */ if ((!cacheAvailable) || (updatesoulofhell) || (forceUpdate)) {
/* 309 */ downloadJars(path);
/* 310 */ extractJars(path);
/* 311 */ extractNatives(path);
Launcher ligne 85 (plus ou moin) :
Code:
/* */
/* 82 */ Thread t = new Thread() {
/* */ public void run() {
/* 84 */ Launcher.this.gameUpdater.run();
/* */ try {
/* 86 */ if (!Launcher.this.gameUpdater.fatalError)
/* 87 */ Launcher.this.replace(Launcher.this.gameUpdater.createApplet());
Merci, bonne soirée.