Hallo
Ich versuche schon verzweifelt formatiert in eine Textdatei zu schreiben und zu lesen?
Leider überhaupt nichts? Das komische bei dem Code ist dass nichtmal eine Exception geworfen wird obwohls dieser Pfad von der Datei nicht gibt? Mein Ziel ist es aus einem Jsp Formular Datensätze in eine Textdatei einzulesen und wieder auszugeben.
big thx
Ich versuche schon verzweifelt formatiert in eine Textdatei zu schreiben und zu lesen?
Leider überhaupt nichts? Das komische bei dem Code ist dass nichtmal eine Exception geworfen wird obwohls dieser Pfad von der Datei nicht gibt? Mein Ziel ist es aus einem Jsp Formular Datensätze in eine Textdatei einzulesen und wieder auszugeben.
Code:
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.RandomAccessFile;
public class FileInOut {
/**
* @param args
*/
public static RandomAccessFile gb;
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("bla");
try {
gb = new RandomAccessFile(new File("bla"),"rw");
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
gb.seek(gb.length());
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
try {
gb.writeUTF("Peter Maier");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
gb.writeUTF("Hallo mein Name ist Hase");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
gb.seek(0);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}