Antovská úloha pro zobrazení výstupu ve www prohlížeči.
2 * XML Web generátor – program na generování webových stránek
3 * Copyright © 2012 František Kučera (frantovo.cz)
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 package cz.frantovo.xmlWebGenerator;
20 import java.io.BufferedReader;
21 import java.io.IOException;
22 import java.io.InputStream;
23 import java.io.InputStreamReader;
26 * Pomocné funkce pro práci s příkazy
29 public class NástrojeCLI {
31 private static final String PŘÍKAZ_WHICH = "which";
34 * Pomocí programu which zjistí, jestli je daný příkaz v systému přítomný.
35 * @param příkaz jehož přítomnost zjišťujeme
36 * @return true pokud příkaz v systému existuje
38 public static boolean isPříkazDostupný(String příkaz) {
40 Runtime r = Runtime.getRuntime();
41 Process p = r.exec(new String[]{PŘÍKAZ_WHICH, příkaz});
43 return p.exitValue() == 0;
44 } catch (Exception e) {
45 System.err.printf("Při zjišťování dostupnosti příkazu „%s“ došlo k chybě: %s", příkaz, e.getLocalizedMessage());
51 * Čte proud dat dokud to jde a výsledek pak vrátí jako text.
52 * @param proud vstupní proud
53 * @return obsah proudu jako text
56 public static String načtiProud(InputStream proud) throws IOException {
57 StringBuilder výsledek = new StringBuilder();
58 BufferedReader buf = new BufferedReader(new InputStreamReader(proud));
60 String radek = buf.readLine();
64 výsledek.append(radek);
65 výsledek.append("\n");
68 return výsledek.toString();