B
bygones
Gast
Hi,
also ich habe ein Problem mit dem RandomAccessFile:
warum bekomm ich keine 1, sondern -1393754107 ??
also ich habe ein Problem mit dem RandomAccessFile:
Code:
ObjectOutputStream oos = new ObjectOutputStream( new FileOutputStream("file" ) );
oos.writeInt( 1 );
oos.close();
RandomAccessFile r = new RandomAccessFile( "file", "r" );
System.out.println( r.readInt() );
r.close();
warum bekomm ich keine 1, sondern -1393754107 ??