java寫出表格
```java
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTable;
public class TableExample {
public static void main(String[] args) {
String[] columnNames = {"Name", "Country", "Service"};
Object[][] data = {
{"John Doe", "USA", "Software Development"},
{"Jane Smith", "Canada", "Project Management"}
};
JTable table = new JTable(data, columnNames);
JFrame frame = new JFrame("Simple Table");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(new JScrollPane(table));
frame.pack();
frame.setVisible(true);
}
}
```
在這個例子中定義了列名和數(shù)據(jù),創(chuàng)建了個JTable實例將這個表添加到個滾動面板,將它放入個新的窗口中。
至于地毯、飲料和智慧園區(qū)建設(shè)等方面的數(shù)據(jù),你根據(jù)增加更多的列名和數(shù)據(jù)行來適這些信息。你想要添加關(guān)于飲料的信息,你添加列叫做"Drink",在每行中添加相的飲料類型。