-1
こんにちは私は私のコードで私のミスは、後に一つだけのプレーヤーに私を見るのテーブルを開くここで私は理解できない少しの助けのためのいくつかを尋ねたいすべてのJavaはJTableのショーをスイングだけ1行/ライン
/**
* Create the frame.
*/
public Player()
{
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 316, 475);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
contentPane.setLayout(new BorderLayout(0, 0));
setContentPane(contentPane);
// create table with data
// headers for the table
column = new String[]
{
"Id",
"Name",
"level",
"Part Time"
};
for (L2PcInstance pc : L2World.getInstance().getPlayers())
{
if (pc.isOnline() && ((pc.getClient() != null) && !pc.getClient().isDetached()))
{
// actual data for the table in a 2d array
data = new Object[][]
{
{
pc.getId(),
pc.getName(),
pc.getLevel(),
false
},
};
}
}
// create table with data
JTable table = new JTable(data, column);
contentPane.add(table, BorderLayout.NORTH);
}
}
すべてのあなたの時間に感謝:)と悪い英語
すぐに役立つようにするには、[MCVE]または[短く、自己完結型の正しい例](http://www.sscce.org/)を投稿してください。 –
これをインスタンス化して使用する残りのコードを含めて、他の人がデバッグを助けるようにしてください。 –
私たちに投稿する[最小実行可能コード](https://stackoverflow.com/help/mcve) – 1ac0