我做了一個項目,顯示了一個商店的庫存庫存。
在該清單中,軟件應該將產品的數據與其圖像一起存儲。
有一個問題...
Bcz的大量股票,圖像正在加載屏幕上花了很多時間。
所以,我想我應該給框架中的標籤上會顯示「加載軟件」。
但現在當我設置可見=真的框架,但bcz的圖像屏幕類加載問題我的框架無法正確顯示。我已經把screen shot,現在我的代碼。框架顯示問題
JFrame f;
try{
f = new JFrame("This is a test");
f.setSize(300, 300);
Container content = f.getContentPane();
content.setBackground(Color.white);
content.setLayout(new FlowLayout());
JLabel jl = new JLabel();
jl.setText("Loading Please Wait....");
content.add(jl);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.setVisible(true);
}catch(Exception e){
e.printStackTrace();
}
initComponents();
try {
addInverntory = new AddInventoryScreen();
showstock = new showStock(); // this class will take big time.
mf = new mainForm();
f.setVisible(false);
}catch (Exception ex) {
ex.printStackTrace();
}
如何在這種情況下顯示一些消息,其他類正在加載或「加載軟件」類的東西。
只爲知道....這個類不是屏幕上的圖像將加載。