1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
try {
/* try Firefox */
Runtime.getRuntime().exec("firefox " + PATH_DOCUMENTATION);
execut = true;
} catch (Throwable t) {
GuiFunctions.append(trace,
"Impossible d'ouvrir la Documentation avec firefox");
}
if (!execut) {
try {
/* try Internet Explorer */
// TODO je crois que ya moyen d'utiliser des variable d'env
// window
Runtime.getRuntime().exec(
"\"C:\\Program Files\\Internet Explorer\\IEXPLORE.EXE\" "
+ PATH_DOCUMENTATION);
execut = true;
} catch (Throwable t) {
GuiFunctions.append(trace,
"Impossible d'ouvrir la Documentation avec " +
"internet explorer");
}
}
if (!execut) {
try {
/* try for Apple Mac */
Runtime.getRuntime().exec("open " + PATH_DOCUMENTATION);
execut = true;
} catch (Throwable t) {
GuiFunctions.append(trace,
"Impossible d'ouvrir la Documentation sur Mac");
}
}
if (!execut) {
try {
/* try Konqueror */
Runtime.getRuntime().exec("konqueror " + PATH_DOCUMENTATION);
execut = true;
} catch (Throwable t) {
GuiFunctions.append(trace,
"Impossible d'ouvrir la Documentation avec " +
"Konqueror");
}
} |
Partager