I'm trying to add a JButton, but it aligns horizontally with a progress bar.
How do I align the JButton on the line below?
Also, I'm trying to group all the components in separate groups, I'm not sure how to do this though. Does anyone know?

I'm trying to add a JButton, but it aligns horizontally with a progress bar.
How do I align the JButton on the line below?
Also, I'm trying to group all the components in separate groups, I'm not sure how to do this though. Does anyone know?

For simple splitting of a JFrame you can use a GridLayout with 2 rows and 2 columns.
frame.setLayout(new GridLayout(2,2,3,3)); //3,3 are gaps
frame.add(grid);
//add components here...