Skip to content
Advertisement

How to check if file or console is associated with Standard Output?

I am using following code to redirect standard out and standard error out to Log file depending on the boolean value of a variable.

JavaScript

Moving further down my code, I want to find out whether my standard out and error out are associated with file – only then I would want to log few things. And over there, I don’t have access to logToFile variable.

Is there any way to find out whether the standard out and error out are associated with file or the default console currently? And if they are associated to file then can we get the file path?

Advertisement

Answer

Moving further down my code, I want to find out whether my standard out and error out are associated with file – only then I would want to log few things. And over there, I don’t have access to logToFile variable.

What about storing the value of logToFile in a static variable, like for example:

JavaScript
JavaScript

And then:

JavaScript

Is there any way to find out whether the standard out and error out are associated with file or the default console currently? And if they are associated to file then can we get the file path?

Create your own PrintStream:

JavaScript
JavaScript

To find out and retrieve the file path:

JavaScript
JavaScript

Note that the same PrintStream can be shared between standard input and standard error.


If you cannot create your own PrintStream, then you need to use reflection:

JavaScript

VarHandle is faster than java.lang.reflect. In Java 8, you can use the latter:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement