Mysql
 sql >> Baza danych >  >> RDS >> Mysql

tworzyć jcomponents za pomocą bazy danych

Przede wszystkim zobacz mądrą radę @AndrewThompsona:

Istnieje kilka pomocnych tematów, które pomogą zrozumieć, co to oznacza:

Zobaczysz użycie metod takich jak setLocation() , setBounds() lub setSize() jest wysoce zniechęcony. Jednak widziałem to podejście przed zastosowaniem, aby umożliwić dostosowywanie formularzy. Ale zamiast określonych współrzędnych (x,y) i stałych (szerokość, wysokość) możesz przechowywać ograniczenia dla GridBagLayout . Załóżmy, że masz taki stół:

Zacząłbym najpierw od klasy do zawijania danych z bazy danych:

public class Data {
    private String componentType, text;
    private int column, row, width, height, weightX, weightY;

    public Data(String componentType, int column, int row, int width, int height
                ,int weightX, int weightY, String text) {

        this.componentType = componentType;
        this.column = column;
        this.row = row;
        this.width = width;
        this.height = height;
        this.weightX = weightX;
        this.weightY = weightY;
        this.text = text;
   }

   // getters and setters here
}

Ponieważ wywołania bazy danych są czasochłonnym zadaniem, należy rozważyć użycie SwingWorker wykonać wywołanie bazy danych (czasochłonne zadanie) w wątku w tle i utworzyć/zaktualizować GUI w Wątek wysyłania zdarzeń .

Powiedziawszy to, możesz mieć coś takiego:

public class Demo {

    private JPanel content;
    private JFrame frame;

    private void createAndShowGUI() {        
        content = new JPanel(new GridBagLayout());

        SwingWorker<Void, Data> worker = new SwingWorker<Void, Data>() {
            @Override
            protected Void doInBackground() {                    
                try{
                   Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/db","root","password");
                   Statement stat = con.createStatement();
                   ResultSet rs = stat.executeQuery("select * from TableName");
                   while(rs.next()){
                      String componentType = rs.getString("component");
                      int column = rs.getInt("x");
                      int row = rs.getInt("y");
                      int width = rs.getInt("width");
                      int height = rs.getInt("height");
                      int weightx = rs.getInt("weightx");
                      int weighty = rs.getInt("weighty");
                      String text = rs.getString("text");
                      Data data = new Data(componentType, column, row, width, height
                                          ,weightx, weighty, text);
                      publish(data);
                  }
                  rs.close();
                  stat.close();
                  con.close();
              } catch(Exception e) {
                  System.out.println(e);
              }

                return null;
            }

            @Override
            protected void process(List<Data> chunks) {
                for(Data data : chunks) {

                    JComponent component = null;
                    if(data.getComponentType().equalsIgnoreCase("JTextField")) {
                        component = new JTextField(data.getText());
                    }

                    if(data.getComponentType().equalsIgnoreCase("JComboBox")) {
                        component = new JComboBox();
                    }

                    if(data.getComponentType().equalsIgnoreCase("JLabel")) {
                        component = new JLabel(data.getText());
                    }

                    if(component != null) {
                        GridBagConstraints constraints = new GridBagConstraints();
                        constraints.gridx = data.getColumn();
                        constraints.gridy = data.getRow();
                        constraints.gridwidth = data.getWidth();
                        constraints.gridheight = data.getHeight();
                        constraints.weightx = data.getWeightX();
                        constraints.weighty = data.getWeightY();

                        constraints.anchor = GridBagConstraints.WEST;
                        constraints.fill = GridBagConstraints.BOTH;
                        constraints.insets = new Insets(8,8,8,8);
                        content.add(component, constraints);
                    }

                }
            }

            @Override
            protected void done() {
                frame = new JFrame("Demo");
                frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
                frame.getContentPane().add(content);
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }
        };

        worker.execute();
    }


    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                new Demo().createAndShowGUI();
            }
        });
    }
}

Zobaczysz coś takiego:




  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Łączenie rekordów w jednej kolumnie bez zapętlania?

  2. Wybierz jedną wartość z grupy na podstawie kolejności z innych kolumn

  3. Wyjaśnienie MySqlBulkLoader

  4. php mysql grupuj według daty w formacie rrrr-mm-dd

  5. Zapytanie PHP MySQL zawierające słowa kluczowe/słowa zastrzeżone