Thursday 17 May 2018

java - Jumping between windows in swing

I have to use netbeans IDE and swing to create GUI for my application. I need several windows, one at the time. I could of course use one JFrame and set visibility of components to false once they're not needed. But I'm sure I can avoid that. Question is: how?

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...