12 janv. 2014, 11:14

Bonjours après avoir réglé mon problème du launcher.jar (le dossier dans le quel il était n’était pas public) j’ai un autre problème concernant beaucoup plus le java , je n’arrive pas a download le fichier ressources officiel de mojang 😕
voici mes logs :


Refreshing local version list…
Launcher 1.0 (through bootstrap 5) started on windows...
Current time is Jan 12, 2014 12:08:17 PM
Refreshing remote version list...
System.getProperty('os.name') == 'Windows 7'
System.getProperty('os.version') == '6.1'
System.getProperty('os.arch') == 'amd64'
System.getProperty('java.version') == '1.7.0_45'
System.getProperty('java.vendor') == 'Oracle Corporation'
System.getProperty('sun.arch.data.model') == '64'
Refresh complete.
Loaded 1 profile(s); selected 'player'
Couldn't download resources
java.io.IOException: Server returned HTTP response code: 403 for URL: http://resources.download.minecraft.net/
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
at net.minecraft.launcher.updater.VersionManager.getResourceFiles(VersionManager.java:135)
at net.minecraft.launcher.updater.VersionManager.downloadResources(VersionManager.java:58)
at net.minecraft.launcher.Launcher$1.run(Launcher.java:154)
at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)

Download job 'Resources' skipped as there are no files to download
Job 'Resources' finished successfully
Starting Listing and Deleting bad mods...
Local File C:\Users\Thomas\AppData\Roaming\.emergia\mods\cuivre.zip checked with 93314e9243fbb3725ce2168920272bcc hash value
Distant File checked with c56f5a7171de466a89916c67a056d757 hash value
Distant File checked with e32e21dff86b2f4c3e9cf44f437b74cb hash value
Distant File checked with 93314e9243fbb3725ce2168920272bcc hash value
Distant File checked with 124fb6bc0fc49496ed9164f1a84a4516 hash value
Local Files ETags : [93314e9243fbb3725ce2168920272bcc, d41d8cd98f00b204e9800998ecf8427e]
Server Files ETags : [c56f5a7171de466a89916c67a056d757, 93314e9243fbb3725ce2168920272bcc, e32e21dff86b2f4c3e9cf44f437b74cb, 124fb6bc0fc49496ed9164f1a84a4516]

et voici mon launcher.constant.java :


package net.minecraft.launcher;

import java.net.URI;
import java.net.URISyntaxException;

public class LauncherConstants {
public static final String VERSION_NAME = "1.0"; //Version du Launcher
public static final int VERSION_NUMERIC = 7;
public static final String DEFAULT_PROFILE_NAME = "player"; //Nom de Profil par Defaut.
public static final String SERVER_NAME = "Emergia"; //Nom de votre Serveur.
public static final URI URL_REGISTER = constantURI("https://account.mojang.com/register"); //Lien géré par le bouton Register dans le Launcher.
// public static final String URL_DOWNLOAD_BASE =
// "https://s3.amazonaws.com/Minecraft.Download/";
public static final String URL_DOWNLOAD_BASE = "http://emergia.pulseheberg.me/launcher/"; //Dossier principal de votre launcher sur votre serveur FTP.
public static final boolean useModResource = false; //Si vous utilisez des mods hébergés sur FTP, mettez sur true. Sinon mettez false.
public static final String URL_DOWNLOAD_MODS = "http://emergia.pulseheberg.me/launcher/ressources/"; //Dossier principal de vos ressouces perso sur votre serveur FTP.
public static final String URL_RESOURCE_BASE = "http://resources.download.minecraft.net/"; //Dossier principal des ressources officielles du jeu. (par defaut "https://s3.amazonaws.com/Minecraft.Resources/" ou "http://resources.download.minecraft.net/")
public static final String LIBRARY_DOWNLOAD_BASE = "https://libraries.minecraft.net/"; //Dossier principal des librairies utilisées par le jeu. (par defaut https://libraries.minecraft.net/ ou "https://s3.amazonaws.com/Minecraft.Download/libraries/")
public static final String URL_BLOG = "http://mcupdate.tumblr.com"; //Blog affiché dans le launcher au démarrage. (par defaut "http://mcupdate.tumblr.com")
public static final String URL_STATUS_CHECKER = "http://status.mojang.com/check"; //Lien de Vérification de Compte chez MOJANG. ("http://status.mojang.com/check")
public static final String URL_BOOTSTRAP_DOWNLOAD = "http://emergia.pulseheberg.me/launcher/bootstrap.jar"; //Adresse de votre fichier bootstrap.jar sur votre serveur FTP.
public static final URI URL_FORGOT_USERNAME = constantURI("http://help.mojang.com/customer/portal/articles/1233873"); //Lien URL de "Pseudo oublié ?". ("http://help.mojang.com/customer/portal/articles/1233873")
public static final URI URL_FORGOT_PASSWORD_MINECRAFT = constantURI("http://help.mojang.com/customer/portal/articles/329524-change-or-forgot-password"); //Lien URL de "Mot de passe oublié ?". ("http://help.mojang.com/customer/portal/articles/329524-change-or-forgot-password")
public static final URI URL_FORGOT_MIGRATED_EMAIL = constantURI("http://help.mojang.com/customer/portal/articles/1205055-minecraft-launcher-error–-migrated-account"); //Lien URL de Migration Mail. ("http://help.mojang.com/customer/portal/articles/1205055-minecraft-launcher-error---migrated-account")
public static final String URL_AUTHENTICATION_SERVER = "https://authserver.mojang.com/"; //Serveur d'authentification, par defaut : "https://authserver.mojang.com/"

public static URI constantURI(final String input) {
try {
return new URI(input);
}
catch(final URISyntaxException e) {
throw new Error(e);
}
}
}

Voila apparament le lien n’est pas bon … alors le quel mettre ?
merci de votre aide
azatom