RTFM - Random Text File Maker
Beschreibung¶
Ein kleines Programm, dass Textdateien mit zufälligen Zahlen füllt. Es war eine Übung für mich um zu lernen wie man Daten in eine Datei schreibt.
Nicht zu verwechseln mit Read the fucking Manual ;-)
Screenshot¶
Source Code¶
rtfm.java¶
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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 |
import java.text.SimpleDateFormat; import java.util.*; import java.io.*; public class RTFM { /** * RTFM - RANDOM TEXT FILE MAKER * Version 0.4 Beta * * David Kleuker * www.davidak.de */ public static void main(String[] args) { Random r = new Random(); // Variablen String name="User"; String cpuname="Computer"; String eingabe=""; String textname="Textdatei"; int anzz = 10; int rand = 0; int i=0; System.out.println("RTFM - RANDOM TEXT FILE MAKER"); System.out.println("Versio 0.4"); System.out.println(); System.out.println("David Kleuker"); System.out.println("www.davidak.de"); System.out.println("------------------------------"); System.out.println(); System.out.print(cpuname+": Wie lautet dein Name: "); name = Eingabe.leseString(); System.out.println(cpuname+": Hallo "+name+"!"); System.out.println(); System.out.println(cpuname+": Schreib 'help' um die Hilfe zu oeffnen oder tippe ein Befehl ein."); System.out.println(); //Befehlseingabeschleife while (!eingabe.equals("ende")) { System.out.println(); System.out.println("------------------------------"); System.out.println(cpuname+": Bitte Befehl eingeben!"); System.out.print(name+": "); eingabe = Eingabe.leseString(); System.out.println("------------------------------"); System.out.println(); // Hilfe if (eingabe.equals("help")) { System.out.println("RTFM Hilfe"); System.out.println("-----------"); System.out.println(); System.out.println("Folgende Befehle kannst du eingeben:"); System.out.println(); System.out.println(); System.out.println("help:"); System.out.println("oeffnet die Hilfe"); System.out.println(); System.out.println("ende, exit, quit:"); System.out.println("beendet das Programm"); System.out.println(); System.out.println("set name"); System.out.println("deinen Name eingeben"); System.out.println(); System.out.println("set cpuname"); System.out.println("Name des Computers eingeben"); System.out.println(); System.out.println("mtf"); System.out.println("'make text file' - Generiert eine Textdatei"); } // Textdatei erzeugen if (eingabe.equals("mtf")) { System.out.println("MAKE TEXT FILE:"); System.out.println("---------------"); System.out.println(); System.out.println(cpuname+": Name der Textdatei (ohne Endung): "); System.out.print(name+": "); textname = Eingabe.leseString(); System.out.println(cpuname+": Anzahl zufaelliger Zeichen: "); System.out.print(name+": "); anzz = Eingabe.leseInt(); // warnen wenn mehr als 10MB if (anzz>10000000) { System.out.println(cpuname+": Die Datei kann mehr als 100MB werden. Weitermachen? j/n: "); System.out.print(name+": "); eingabe = Eingabe.leseString(); if (eingabe.equals("n")) { System.out.println(cpuname+": Es wurde keine Datei erzeugt."); System.out.println(cpuname+": Das Programm wird nun beendet."); System.out.println(); System.out.println(); break; } else System.out.println(cpuname+": Ich hab dich gewarnt!"); } Date dNow = new Date(); Date dNoww = new Date(); SimpleDateFormat datumm = new SimpleDateFormat ("dd.MM.yyyy"); SimpleDateFormat zeitt = new SimpleDateFormat ("HH:mm"); // Datei schreiben try { BufferedWriter out = new BufferedWriter(new FileWriter(textname+".txt")); out.write("RTFM - RANDOM TEXT FILE MAKER"); out.newLine(); out.write("------------------------------"); out.newLine(); out.newLine(); out.write("(c) 2008 David Kleuker"); out.newLine(); out.write("www.davidak.de"); out.newLine(); out.newLine(); out.write(name+" hat diese Datei am "+datumm.format(dNow)+" um "+zeitt.format(dNoww)+" Uhr erstellt."); out.newLine(); out.newLine(); out.newLine(); // Alle zufallszahlen generieren und schreiben while(i<anzz) { i++; rand = r.nextInt(10); // Zeichen generieren if (rand==0) { out.write("0"); } if (rand==1) { out.write("1"); } if (rand==2) { out.write("2"); } if (rand==3) { out.write("3"); } if (rand==4) { out.write("4"); } if (rand==5) { out.write("5"); } if (rand==6) { out.write("6"); } if (rand==7) { out.write("7"); } if (rand==8) { out.write("8"); } if (rand==9) { out.write("9"); } // alle 100 Zeichen eine neue Zeile if (i % 100==0) { out.newLine(); } } i=0; out.close(); System.out.println(cpuname+": Datei erfolgreich erstellt."); } catch (IOException e) { System.out.println(cpuname+": Schreiben der Datei fehlgeschlagen."); System.out.println("Fehler "+e.toString()); } } // Name ndern if (eingabe.equals("set name")) { System.out.print(cpuname+": Neuer Name: "); name = Eingabe.leseString(); System.out.println(); System.out.println(cpuname+": "+name+" ist auch ein toller Name!"); } // CPU Name ndern if (eingabe.equals("set cpuname")) { System.out.print(cpuname+": Neuer Name fr mich: "); cpuname = Eingabe.leseString(); System.out.println(); System.out.println(cpuname+": "+cpuname+" ist auch ein toller Name!"); } // Beenden if (eingabe.equals("ende")) { break; } // Beenden if (eingabe.equals("exit")) { eingabe = "ende"; break; } // Beenden if (eingabe.equals("quit")) { eingabe = "ende"; break; } } // Ende des Programms System.out.println("Tschss, "+name+"!"); System.out.println(); System.out.println("Besuch meinen Blog oder mein Wiki mit noch mehr Java-Programmen."); System.out.println(); System.out.println("www.davidak.de"); } } |
Kommentare