需要在此表上添加标题

时间:2017-08-09 14:26:23

标签: java swing jtable

我正在尝试从SQlite数据库中获取数据并在main :: IO () main = scotty 3000 $ Scotty.get "/" $ do r <- liftIO $ Wreq.get "https://www.metaweather.com/api/location/search/?query=New%20York" raw (r ^. responseBody) 中显示 - 但标题不会出现。

这是我的代码:

JTable

这就是结果:

enter image description here

1 个答案:

答案 0 :(得分:1)

尝试在此部分代码中将 JTable tabel_1 =new JTable(); tabel_1.setSelectionBackground(new java.awt.Color(0, 153, 51)); JScrollPane tableScroll = new JScrollPane(tabel_1); frame.add(tableScroll); 添加到您的代码中,如下所示:

{{1}}