What Is Java Console?

The Java Console is a special program used to assist developers in finding and correcting bugs in their applications. It is not the same as the program JConsole, used by systems administrators to monitor the Java virtual machine.

  1. System.out and System.err

    • All systems have a "system out" and "system error" stream that programs can use to log important information for developers, though end users rarely encounter them, especially on Windows or Mac OS X. Java Console shows all information sent to the system out and system error streams by Java programs.

    Force Garbage Collection

    • The Java Console has a special function to force the Java "garbage collector" to run. This special program runs regularly and returns memory to the operating system that is no longer being used by programs.

    Memory Dump Options

    • The Java Console has a number of options for dumping into log files all the information as it currently exists in the Java Virtual Machine. This can be an important tool for assisting Java developers to find particularly difficult bugs.

    Tracing Options

    • Programmers can use the Java Console to keep track of everything a program in the virtual machine does for later inspection.

Related Searches:

References

Comments

You May Also Like

  • How to Enable a Java Console

    The Java console provides developers with an output screen for debugging and testing Java applications. It is a small window in which...

  • How to Enable & View the Java Console in a Mac

    The Mac OS X operating system has support for Java applets built in. However, by default, the Java Console tool is disabled...

  • How to Delete a Variable on the Console for Java

    Variables are a string of characters used to hold values in Java programming. Instead of typing "5" when using a number, you...

  • Java 1.5 Tutorials

    Java is a programming language you can use to build a variety of applications, whether you are doing database work, network-intensive tasks...

  • How to Open a Java Console

    The Java run-time runs programs written in the Java programming language. Java software is often used for programs embedded on Web pages,...

  • How to Install a Java Console

    The Java Console is a screen containing important information about the Java software on your computer. The Java Console gets installed on...

  • How to Change a Java Heap Size in a WebLogic Console

    Oracle WebLogic is a Java Enterprise Edition (EE) software development platform that includes the Java EE application server, WebLogic Application Server and...

  • How to Display the Java Console

    The Java console is a utility used to review code and the output and error messages associated with Java programmed applications. The...

  • How to Change Java Heap Space

    The Java system takes a lot of worries about memory management off the developers, but it still has to have some memory...

  • How to Delete a Certificate on a Mac

    Every time a computer connects to a secure website or wireless network, the connection is validated by a virtual security certificate. Information...

Related Ads

Featured