during coding and debugging I use Log(), because it is not possible to execute the code step by step when GUI actions are required at same time. Within debugger environment this lets crash the debugger often, because these text outputs need too much time.
So now I wanna write a kind of log messages into my own log file. Hereby I ended with a compiler message "cannot find symbol" for the method write( byte[] ).
This method is part of class RandomAccessFile within package java.io.
In the header of my module code I added
Code: Select all
import java.nio.*;
import java.lang.Object;
import java.io.*;
Roland