Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テーブル データを配列にコピーしようとすると、この実行時例外が発生しました。そして、私は使用しました
DefaultTableModel model = new DefaultTableModel(dataValues, columnNames); jtable.setModel(model);
setModelモデルを設定するためにテーブルの方法を使用しました。それでも問題は存在します。サンプルコードを教えてください。
setModel
テーブルに格納される値のデフォルトの型はオブジェクト型です。最初に「文字列」型に変換して (または必要に応じて)、配列に格納してみてください。