setContentType("application/x-unknow");
---------------
[email protected]
Power by CSDN论坛助手

解决方案 »

  1.   

    void getButton_actionPerformed(ActionEvent e) {
    String server=serverEdit.getText();
        String user=userEdit.getText();
        String password=passwordEdit.getText();
        String path=pathEdit.getText();
        String filename=filenameEdit.getText();
       try {
       FtpClient ftpClient=new FtpClient();
       ftpClient.openServer(server);
       ftpClient.login(user, password);
           if (path.length()!=0) ftpClient.cd(path);
       ftpClient.binary();
       TelnetInputStream is=ftpClient.get(filename);
       File file_out=new File(filename);
           FileOutputStream os=new 
           FileOutputStream(file_out);
           byte[] bytes=new byte[1024];
       int c;
       while ((c=is.read(bytes))!=-1) {
          os.write(bytes,0,c);
       }
           is.close();
           os.close();
           ftpClient.closeServer();
        } catch (IOException ex) {;}
      }
    我就是用这个的
      

  2.   

    to-> skyyoung(路人甲)你的方法看来可行,不过我还是不能实现。我的要求是有一个链接,点击后直接出现ie的下载对话框,唉,原来没有做过这种东西,现在老板要,真是头大,还请各位帮忙。