Skip to main content
Announcements
A fresh, new look for the Data Integration & Quality forums and navigation! Read more about what's changed.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Redirect the output from the console to a file

A common question I get when working on client sites is, "How can we save the output from the console without having to copy and paste it?". The console (from Talend DI v6) is shown below.

 

0683p000009Lzx2.jpg

Unfortunately there isn't a "built-in" way of doing this, but it is very simple to implement this functionality. All you need to do is start your job with a tJava component and add the code below to it.....

java.io.File outputFile = new java.io.File("e:/output.txt");
System.setOut(new java.io.PrintStream(new java.io.FileOutputStream(outputFile, true), true));

 

This code redirects the console output to a file called "output.txt" on the e: drive. Change the file location as required.

Using this trick will ensure that all logging output is sent to the file, but you will no longer see it in the console.

All errors will be shown in the console though.

 

NOTE: I received a question from @gslokoski about whether the output could be split so that it remains in the console as well as being added to a file. I suggested trying a solution I had found on Google. @gslokoski came back with this solution which I have subsequently tried. It's pretty nice, so I thought I would add it here. All credit to @gslokoski.

 

java.io.File outputFile = new java.io.File("c:/temp/output.txt");
java.io.FileOutputStream fos = new java.io.FileOutputStream(outputFile);
//we will want to print in standard "System.out" and in "file"
org.apache.commons.io.output.TeeOutputStream myOut=new org.apache.commons.io.output.TeeOutputStream(System.out, fos);
java.io.PrintStream ps = new java.io.PrintStream(myOut, true); //true - auto-flush after println
System.setOut(ps);
System.setErr(ps);

You will need to add the commons-io-2.4.jar which comes with Talend. You can do this with a tLibraryLoad component.

Labels (3)
14 Replies
Anonymous
Not applicable
Author

This is Nice and Brilliant! I use tJava to print it in the standard output and use tWarn with (info) and tLogCatcher and tFileOutputDelimited to write the same information in a file. This is simple and sleek. I will try this for sure!!!  

Anonymous
Not applicable
Author

colud you ellabrate this i have very little knowledge on java i can't understand this code
Anonymous
Not applicable
Author

What don't you understand? The code can be used "as is" so long as the path to your log file is acceptable. Otherwise, just change that path.

Anonymous
Not applicable
Author

Can you please attache the job and code. it will help for others.

 

Regards,

Anonymous
Not applicable
Author

@apentyala there is no job, you simply copy the code I have given into a tJava. It is that simple, honestly 🙂

CarlovdMeer
Contributor

Works perfectly! Just what I needed, thanks.

haPoalim
Contributor


@rhall wrote:

@apentyala there is no job, you simply copy the code I have given into a tJava. It is that simple, honestly 🙂


Someone  get size file 0KB in the Folder ?

I use this code but its look like is not working the file creating.... but is  always empty.

its happen to any one >?

 

Anonymous
Not applicable
Author

Where is the tJava component in your job? It should either be at the beginning (a start component) or connected to the tPreJob component. 

kanuparthy
Contributor

it is not working. Output file is creating with status disconnected all the data in console is not saving