Applet used to work, but now it will not. I am not very experienced with GUI's much less Applets. Here is the GUI code:
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import java.io.*;
public class StockGUI extends JApplet implements ActionListener
{
private final String sPASS = "abc123";
//Stock oStock = new Stock();
//StockInput oStockInput = new StockInput();
//////////////////////////////////////////////////////////
JPanel jPanel;
JPasswordField jPass;
JButton jBEnter, jBYes, jBNo;
JTextArea jTAInput, jTACurrent;
JTextField jTxtField;
JLabel jLEnterP, jLQue, jLCurrent;
JScrollPane jScroll;
public void init()
{
getContentPane().setLayout(null);
jPanel = new JPanel(); jPanel.setSize(500,1500);
////////////////////////////////////////////////
jPass = new JPasswordField(20);
jPass.setActionCommand(sPASS);
jLEnterP = new JLabel("Enter Password:");
jPanel.add(jLEnterP);
jPanel.add(jPass);
jPass.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
String cmd = e.getActionCommand();
if(cmd.equals(sPASS))
{
char[] cAry = jPass.getPassword();
if(isPassword(cAry))
{
doPass();
}
}
}
});
getContentPane().add(jPanel, BorderLayout.CENTER);
}
public void actionPerformed(ActionEvent e)
{
String cmd = e.getActionCommand();
if(cmd.equals("Yes"))
{
doInput();
}
if(cmd.equals("No") || cmd.equals("Done"))
{
doMain();
}
}
public void doPass()
{
jPanel.removeAll();
jLQue = new JLabel("Do you need to input more data?");
jBYes = new JButton("Yes");
jBYes.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
doInput();
}
});
jBNo = new JButton("No");
jBNo.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
doMain();
}
});
jPanel.add(jLQue);
jPanel.add(jBYes);
jPanel.add(jBNo);
refresh();
}
public void doInput()
{
jPanel.removeAll();
jLQue = new JLabel("Enter Data:");
jTAInput = new JTextArea(25,50);
jLCurrent = new JLabel("Current Data");
jTACurrent = new JTextArea(25, 25);
jTACurrent.setEditable(false);
//jTACurrent.setText(oStockInput.getList());
jScroll = new JScrollPane(jTACurrent);
jPanel.add(jLQue);
jPanel.add(jTAInput);
refresh();
}
public void doMain()
{
jPanel.removeAll();
jPanel.add(new JLabel("HELLO WORKD!!"));
refresh();
}
public void refresh()
{
jPanel.repaint();
jPanel.revalidate();
super.validate();
super.repaint();
}
public boolean isPassword(char[] cAry)
{
return Arrays.equals(cAry, sPASS.toCharArray());
}
The HTML Code:
// <html>
//<body>
//<p align=center>
//<applet code="StockGUI.class" width=500 height=1500>
// </applet>
//</p>
//</body>
//</html>
I get no errors on compile. I am trying to use Anonymous Classes for the ActionListeners, but this is the first time I have used them. When I launch it Chrome, all it shows is a white background. Any help would be good. Thanks.
Check the Java Console. It is likely to provide the cause of the failure.