java - 如何在 Java 中的 JTable 中显示来自 URL 的图像

标签 java jtable imageurl

我知道这将是一个重复的问题,但我找不到关于我的案例的答案。我在 MySQL 数据库中有一个图像的 URL(像这样 https://i.imgur.com/VcV0SG.jpg)。所以我需要在 JTable 中呈现这些图像。我该怎么做?

代码

            java.lang.reflect.Type listType = new TypeToken<ArrayList<Products>>() {}.getType();
            List<Products> productsList = new Gson().fromJson(json, listType);

            for(Products pro : productsList)
            {
                DefaultTableModel model = (DefaultTableModel) productsTable.getModel();
                Vector<String> row = new Vector<String>();

                row.add(pro.getCode());
                row.add(pro.getName());
                row.add(pro.getPrice());
                //returns String (url of the image like `https://i.imgur.com/VcV0SG.jpg`)
                row.add(pro.getPic());
                model.addRow(row);
            }

最佳答案

我了解到您知道如何从 MySQL 中提取数据。如果你已经有了数据,剩下的部分就很简单了。使用 ImageIcon。这是一个例子:

import javax.swing.*;
import javax.swing.table.DefaultTableModel;
import java.awt.*;
import java.net.MalformedURLException;
import java.net.URL;

public class Main extends JPanel {

   public static void main(String[] args) {
    EventQueue.invokeLater(() -> {
        try {
            showGui();
        } catch (MalformedURLException e) {
            e.printStackTrace();
        }
    });
   }

  public Main() throws MalformedURLException {
    Icon icon1 = new ImageIcon(new URL(
            "https://www.cleverpetproducts.com/wp-content/uploads/2018/03/tardar.jpg"));
    Icon icon2 = new ImageIcon(new URL(
            "https://www.cleverpetproducts.com/wp-content/uploads/2018/03/tardar.jpg"));
    Icon icon3 = new ImageIcon(new URL(
            "https://www.cleverpetproducts.com/wp-content/uploads/2018/03/tardar.jpg"));

    String[] columnNames = {"Picture", "Text"};
    Object[][] data = {
                    {icon1, "Text 1"},
                    {icon2, "Text 2"},
                    {icon3, "Text 3"},
     };

    DefaultTableModel model = new DefaultTableModel(data, columnNames) {
        public Class getColumnClass(int column) {
            return getValueAt(0, column).getClass();
        }
    };
    JTable table = new JTable(model);
    table.setPreferredSize(new Dimension(500, 500));
    table.getColumn(columnNames[0]).setPreferredWidth(300);
    table.getColumn(columnNames[1]).setPreferredWidth(100);
    table.setRowHeight(0, 100);
    table.setRowHeight(1, 100);
    table.setRowHeight(2, 100);

    JScrollPane scrollPane = new JScrollPane(table);
    add(scrollPane);
 }

 private static void showGui() throws MalformedURLException {
    JFrame frame = new JFrame("Icon showcase");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.add(new Main());
    frame.setLocationByPlatform(true);
    frame.pack();
    frame.setVisible(true);
 }

}

关于java - 如何在 Java 中的 JTable 中显示来自 URL 的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49882627/

相关文章:

java - Apache Lucene TokenStream 契约(Contract)违规

java - 用java打开excel文档

android - 在 Android Studio 3.3.1 之后,来自 url 的所有图像都停止加载

android - 使用共享首选项来存储图像 URL

java - (J)尽管启用了自动行排序器并使用可比数据,但表仍无法排序

asp.net - GridView无法显示图像

java - 如何停止阻止 BufferedReader.readline() 上的读取?

Java转换为公里

java - 删除包含某个字母的字符串的 JTable 行

java - 如何创建每行具有不同按钮的jtable