Anonymní profil W-GameZ – Programujte.com
 x   TIP: Přetáhni ikonu na hlavní panel pro připnutí webu

Anonymní profil W-GameZ – Programujte.comAnonymní profil W-GameZ – Programujte.com

 

Příspěvky odeslané z IP adresy 178.40.92.–

W-GameZ
Java › JAVA - čítanie a prepísanie…
10. 10. 2013   #182198

#1 bitEe.Eu
Ak máš Javu 7 tak skús nejak takto 

try {
            String string = "mp3";
            String newString = "mp3: YES";
            Path file = Paths.get("config");
            if (!Files.exists(file)) {
                System.err.println("Subor " + file.getFileName() + " neexistuje");
                return;
            }
            List<String> lines = Files.readAllLines(file, Charset.defaultCharset());
            Files.deleteIfExists(file);
            for (String line : lines) {
                if (line.contains(string)) {
                    lines.set(lines.lastIndexOf(line), newString);
                }
            }
            Files.deleteIfExists(file);
            Files.createFile(file);
            for (String line : lines) {
                line += System.getProperty("line.separator");
                Files.write(file, line.getBytes(), StandardOpenOption.APPEND);
            }
        } catch (IOException ex) {
            System.err.println("Chyba: " + ex.getMessage());
        }

 

 

Hostujeme u Českého hostingu       ISSN 1801-1586       ⇡ Nahoru Webtea.cz logo © 20032024 Programujte.com
Zasadilo a pěstuje Webtea.cz, šéfredaktor Lukáš Churý