Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm developing an application which displays images, and plays sounds from a database. I'm trying to decide, whether to use a separate JFrame to add Images to the Database from the GUI. I'm just wondering whether it is good practice to use multiple JFrames?

share|improve this question
5  
Only if you are targetting a multi-monitor set-up! – DNA Sep 22 '12 at 19:46

4 Answers

up vote 83 down vote accepted

I'm just wondering whether it is good practice to use multiple JFrames?

Bad (bad, bad) practice.

  • User unfriendly: The user sees multiple icons in their task bar when expecting to see only one. Plus the side effects of the coding problems..
  • A nightmare to code and maintain:
    • A modal dialog offers the easy opportunity to focus attention on the content of that dialog - choose/fix/cancel this, then proceed. Multiple frames do not.
    • A dialog (or floating tool-bar) with a parent will come to front when the parent is clicked on - you'd have to implement that in frames if that was the desired behavior.

There are any number of ways of displaying many elements in one GUI, as detailed in:

  1. This answer, where I mention remove/add, JInternalFrame/JDesktopPane, CardLayout, JTabbedPane, JSplitPane & nested layouts.
  2. This answer - most of those above are mentioned & linked, as well as JToolBar.

But if those strategies do not work for a particular use-case, try the following. Establish a single main JFrame, then have JDialog instances appear for the rest of the free-floating elements, using the frame as the parent for the dialogs.


I have used the CardLayout to display many elements, it's easily implemented and quite useful.

Yes, CardLayout is a great example. Note though, that in this case where the multiple elements are images, I'd be tempted to use either of the following instead:

  1. A single JLabel (centered in a scroll pane) to display whichever image the user is interested in at that moment. As seen in ImageViewer.
  2. A single row JList. As seen in this answer. The 'single row' part of that only works if they are all the same dimensions. Alternately, if you are prepared to scale the images on the fly, and they are all the same aspect ratio (e.g. 4:3 or 16:9).

share|improve this answer
2  
@GETah I have used the CardLayout to display many elements, it's easily implemented and quite useful. – Peddler Mar 4 '12 at 12:10
1  
@GETah See refs. 1 & 2 added in an edit. – Andrew Thompson Mar 4 '12 at 12:12
1  
@Peddler See the latest edit re. images as well. – Andrew Thompson Mar 4 '12 at 12:22
1  
@AndrewThompson I had never come across a situation where I needed multiple JFrames before and never considered those issues, thanks for explaining! – Jeffrey Apr 20 '12 at 1:29
1  
How about using JInternalFrame ? It's not difficult to implement and seems quite intuitive to me (many applications have a main window and several smaller frames inside it, take GIMP or Photoshop) – Tom Jun 17 '12 at 9:50
show 16 more comments

Make an jInternalFrame into main frame and make it invisible. Then you can use it for further events.

jInternalFrame.setSize(300,150);
jInternalFrame.setVisible(true);
share|improve this answer

Bad practice definitely. One reason is that it is not very 'user-friendly' for the fact that every JFrame shows a new taskbar icon. Controlling multiple JFrames will have you ripping your hair out.

Personally, I would use ONE JFrame for your kind of application. Methods of displaying multiple things is up to you, there are many. Canvases, JInternalFrame, CardLayout, even JPanels possibly.

Multiple JFrame objects = Pain, trouble, and problems.

    - Matt Dawsey
share|improve this answer
1  
hmm ... nothing new compared to the accepted answer, afaics? – kleopatra Jan 10 at 11:09

It's been a while since the last time i touch swing but in general is a bad practice to do this. Some of the main disadvantages that comes to mind:

  • It's more expensive: you will have to allocate way more resources to draw a JFrame that other kind of window container, such as Dialog or JInternalFrame.

  • Not user friendly: It is not easy to navigate into a bunch of JFrame stuck together, it will look like your application is a set of applications inconsistent and poorly design.

  • It's easy to use JInternalFrame This is kind of retorical, now it's way easier and other people smarter ( or with more spare time) than us have already think through the Desktop and JInternalFrame pattern, so I would recommend to use it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.