devxlogo

Read Log Files and Display New Changes on Console at Runtime

Read Log Files and Display New Changes on Console at Runtime

In applications like JRun, which output to log files but not to the console, it is difficult to analyze output at real-time. It is necessary to go into the log file again and again, browsing through for new messages. There is a simple program, which sits in a loop and displays the new messages as they are added to the log file by your program:

 /** * Title: Log Reader * Description: * Copyright:    Copyright (c) 2000 * Company: * @author Muhammad Nadeem Akhter * @version 1.0 */import java.io.*;public class LogReader {  public static void main(String args[]){    if (args.length <1){      System.out.println(

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist