Im currently wanting to construct a table type of layout for JPanels. I found out there is a TableLayout for Java but I don't how to import it. On the other hand i found out there is a GridBagLayOut which also can construct a table like layout.But it seems more complicated. Any advice.
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
Here is an SSCCE of using a TableLayout, (Introduction to TableLayout)
The required jar for the TableLayout can be downloaded from here
Also have a look at : A Visual Guide to Layout Managers ,In case.
In case you go for GridBagLayout, have a look at : How to Use GridBagLayout