Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7183397
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T17:58:15+00:00 2026-05-28T17:58:15+00:00

I have made a program that continuously monitors a log file. But I don’t

  • 0

I have made a program that continuously monitors a log file. But I don’t know how to monitor multiple log files. This is what I did to monitor single file. What changes should I make in the following code so that it monitors multiple files also?

package com.read;

import java.io.File;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.nio.channels.FileChannel;
import java.nio.channels.FileLock;
import java.util.Date;
import java.util.Timer;
import java.util.TimerTask;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class FileWatcherTest {

    public static void main(String args[]) {

        final File fileName = new File("D:/logs/myFile.log");

        // monitor a single file
        TimerTask fileWatcherTask = new FileWatcher(fileName) {

            long addFileLen = fileName.length();
            FileChannel channel;
            FileLock lock;
            String a = "";
            String b = "";

            @Override
            protected void onChange(File file) {

                RandomAccessFile access = null;
                try {
                    access = new RandomAccessFile(file, "rw");
                    channel = access.getChannel();
                    lock = channel.lock();
                    if (file.length() < addFileLen) {
                        access.seek(file.length());
                    } else {
                        access.seek(addFileLen);
                    }
                } catch (Exception e) {
                    e.printStackTrace();
                }
                String line = null;
                try {

                    while ((line = access.readLine()) != null) {

                        System.out.println(line);

                    }

                    addFileLen = file.length();

                } catch (IOException ex) {
                    Logger.getLogger(FileWatcherTest.class.getName()).log(
                            Level.SEVERE, null, ex);
                }
                try {
                    lock.release();
                } catch (IOException e1) {
                    // TODO Auto-generated catch block
                    e1.printStackTrace();
                } // Close the file

                try {
                    channel.close();
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }

            }

        };

        Timer timer = new Timer();
        // repeat the check every second
        timer.schedule(fileWatcherTask, new Date(), 1000);
    }
}




package com.read;

import java.util.*;
import java.io.*;

public abstract class FileWatcher extends TimerTask {

    private long timeStamp;
    private File file;
    static String s;

    public FileWatcher(File file) {
        this.file = file;
        this.timeStamp = file.lastModified();
    }

    public final void run() {
        long timeStamp = file.lastModified();

        if (this.timeStamp != timeStamp) {
            this.timeStamp = timeStamp;

            onChange(file);
        }
    }

    protected abstract void onChange(File file);
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T17:58:16+00:00Added an answer on May 28, 2026 at 5:58 pm

    You should use threads. Here’s a good tutorial:

    http://docs.oracle.com/javase/tutorial/essential/concurrency/

    You would do something like:

    public class FileWatcherTest {
    
        public static void main(String args[]) {
            (new Thread(new FileWatcherRunnable("first.log"))).start();
            (new Thread(new FileWatcherRunnable("second.log"))).start();
        }
    
        private static class FileWatcherRunnable implements Runnable {
            private String logFilePath;
            // you should inject the file path of the log file to watch
            public FileWatcherRunnable(String logFilePath) {
               this.logFilePath = logFilePath;
            }
            public void run() {
                // your code from main goes in here
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have made a program that list all files and folders(f&f) locating on sd
Hi I have made a program that reads a text file containing words and
Hi i have made a simple program that plays a video file, i used
My C++ is a little rusty but I have made a program that reverses
I have made a program in Java that calculates powers of two, but it
I have a pointer of a structure type that I made. On program start
I have made my own file type (.ddd) and I made a simple program
If I made a program that stores strings on a text file using the
I'm learning java and I have made simple program that simply reads value from
I have a made a simple program that reproduces the problem: #include <boost/archive/text_oarchive.hpp> #include

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.