在applet中按钮使用JFileChooser跳出本地电脑系统目录,但嵌入网页后无法在客户端运行,求高手帮帮我啊~ 5
设置了一个button,添加了监听器,然后运行如下代码:JFileChooserfc=newJFileChooser();intr=fc.showOpenDialog(t...
设置了一个button,添加了监听器,然后运行如下代码:
JFileChooser fc = new JFileChooser();
int r = fc.showOpenDialog(this);
if (r == JFileChooser.APPROVE_OPTION)
{
File file = fc.getSelectedFile();
try
{
fieldfile.setText(file.getAbsolutePath());
}catch (Exception ex){}
}
在服务器端运行成功的,但是讲applet放入网页,客户端访问该网站,点击本applet程序中的该button时,没有发生任何动作,无法运行本段代码,求解啊~ 展开
JFileChooser fc = new JFileChooser();
int r = fc.showOpenDialog(this);
if (r == JFileChooser.APPROVE_OPTION)
{
File file = fc.getSelectedFile();
try
{
fieldfile.setText(file.getAbsolutePath());
}catch (Exception ex){}
}
在服务器端运行成功的,但是讲applet放入网页,客户端访问该网站,点击本applet程序中的该button时,没有发生任何动作,无法运行本段代码,求解啊~ 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询