1

Is it possible to customize the output window on Apache Netbeans to make it show the result only? Like e.g.

run-single: Hello World

I mean what are these informations and why?

Netbeans output Window

Olaf Kock
  • 46,930
  • 8
  • 59
  • 90
sharpnado
  • 79
  • 1
  • 1
  • 15
  • you show no code, you don't show your configuration, yet you expect us to explain it's behavior? – Stultuske Sep 22 '20 at 13:04
  • What kind of code do you need there is only System.out.println("Hello World"); including class and main method. I don't get it?! – sharpnado Sep 22 '20 at 14:33
  • so .. there is no ant config? basically, what is shown there, is the terminal of your ide, so it also tends to print some config your ide does. If you have it in a .jar file which you execute from command line, you'll likely to get a different result – Stultuske Sep 22 '20 at 14:38
  • Thank you anyways for the effort to answer. I think I'm going to install Eclipse. – sharpnado Sep 22 '20 at 15:21

1 Answers1

1

You seem to have an Ant java project. You can adjust the Ant verbosity in Netbeans menu Tools/Options/Java/Ant, set Verbosity Level to "Quiet".

jjazzboss
  • 1,261
  • 8
  • 14