我正在将应用程序从独立 (JFrame) 转换为 Applet (JApplet)。我已将 FileDialog 构造函数中的参数从父框架更改为 getContentPane,但这无法正常工作。我得到了类 Cast 异常,说不能将 Jpanel 转换为 Frame。
请找到SSCCE。请帮我解决这个问题。
public class SampleApplet extends JApplet{
protected JButton countryButton = new JButton("Select");
public synchronized void init()
{
this.setBounds(new Rectangle(350,350));
this.add(countryButton);
countryButton.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent arg0) {
getCountries();
getCountries();
}
});
}
protected void getCountries() {
FileDialog fileDialog_ImageIn = new FileDialog((Frame) getContentPane() ,"Select a GIF file", FileDialog.LOAD);
fileDialog_ImageIn.setVisible(true);
if (fileDialog_ImageIn.getFile() == null)
return;
else
System.out.println(fileDialog_ImageIn.getDirectory() + fileDialog_ImageIn.getFile());
}
}