java FileChannel writing to a file and adding \n at the end

1.7k Views Asked by At

i'm trying to make log using the FileChannel. for some reason it doesn't get the \n character in my file.

my function:

private void serverLog(String status, String message)
    {           
        currentTime = new Date().getTime();
        String date = dateFormat.format(currentTime);
        String time = timeFormat.format(currentTime);
        String log = logFileName + date + "-" + time;
        String path = new File(".").getAbsolutePath();
        String logLine = date + "|" + time + "|" + status + "|" + message + "|" + Runtime.getRuntime().freeMemory() + "\n"; 
        File file = new File(path,log);

        try {
            if (!file.exists())                 
                file.createNewFile();
            fileChannel = new RandomAccessFile(file, "rw").getChannel();                
            FileLock lock = fileChannel.tryLock();

            while (!lock.isValid())
                lock = fileChannel.tryLock();

            if (lock.isValid())
            {
                fileChannel.position(fileChannel.size());
                ByteBuffer buf = ByteBuffer.allocate(logLine.length());
                buf.clear();
                buf.put(logLine.getBytes());
                buf.flip();
                while (buf.hasRemaining())
                    fileChannel.write(buf);     
                lock.release();
                fileChannel.close();
            }   

        } catch (FileNotFoundException e) {         
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }           
    }

this is my output file:

16-05-2012|20-17-27|Success|New user connected: Id: 12345 Name: asaf IP: /0:0:0:0:0:0:0:1|8154448016-05-2012|20-17-27|Count|Current users online: 1, Current ghosts connections: 0|81544480
0

There are 0 best solutions below