0

我有一个 java 小程序,它使用一个具有 3 个函数的类(不包括测试函数):

  • 一个用于运行文件选择器并将选定的文件(类型 FileContents )添加到数组中。
  • 其次,如有必要,从数组中删除一些文件。
  • 第三个是上传文件到 ftp 服务器。

    所有这些都是从Javascript代码中调用的。两个第一个功能工作得很好。上传功能不起作用,它抛出:

java.security.AccessControlException: 访问被拒绝 ("java.net.SocketPermission" (dest. ftp server) "resolve")

小程序是自签名的。我正在使用[Yii Framework][1].
重要代码:- Uploader 上传功能:

public void upload( String ftpServer, String username, String password, String filePath )
throws MalformedURLException, IOException
{
    if ( ftpServer != null && filePath != null && this.filesArray.length > 1 ) {
        StringBuffer sb = new StringBuffer( "ftp://" );
        //check for authentication, if username and password not provided assume annonymous access
        if ( username != null && password != null ) {
            sb.append( username );
            sb.append( ':' );
            sb.append( password );
            sb.append( '@' );
        }

        sb.append( ftpServer );
        sb.append( ":21" );
        sb.append( '/' );

        if ( !filePath.equals( "" ) ) {
            sb.append( filePath );
            sb.append( '/' );
        }

        StringBuffer sb2 = new StringBuffer( sb.toString() );
        //below: i < this.filesArray.length - 1 becouse last field is always empty
        for ( int i = 0; i < this.filesArray.length - 1; i++ ){ 
            sb.append( this.filesArray[ i ].getName() );
            sb.append( ";type=i" );

            BufferedInputStream bis = null;
            BufferedOutputStream bos = null;

            try {
                URL url = new URL( sb.toString() );
                URLConnection urlConn = url.openConnection();

                bos = new BufferedOutputStream( urlConn.getOutputStream() );
                bis = new BufferedInputStream( this.filesArray[ i ].getInputStream() );

                int j;
                //read byte by byte until end of stream
                while ( ( j = bis.read() ) != -1 ) {
                    bos.write( j );
                }
            }
            finally {
                if ( bis != null ) {
                    try {
                        bis.close();
                    }
                    catch( IOException ioe ) {
                        ioe.printStackTrace();
                    }
                }
                if ( bos != null ) {
                    try {
                        bos.close();
                    }
                    catch ( IOException ioe ) {
                        ioe.printStackTrace();
                    }
                }
            }
            sb = sb2;
        }
    }
    else {
        System.out.println( "Ftp address incorrect or input file not available." );
    }
}

部署代码

    <script>
var attributes = { id:'uploader1Applet',
    code: 'filesUpload.uploaderApplet',
    archive:'<?php echo Yii::app()->getBaseUrl(true); ?>/java/uploaderApplet.jar',  width:1, height:1} ;


var parameters = {jnlp_href: '<?php echo Yii::app()->getBaseUrl(true);?>/java/upload-applet.jnlp'};   


     deployJava.runApplet(attributes, parameters, '1.6') ;

  • javascript 声明 + 初始化(初始化唯一的工作是将新的 FileContents 数组分配给 Uploader 属性;与上面相同的视图,不同的脚本):
var uploader = document.getElementById( 'uploader1Applet' ).getUploader();
      uploader.initialize();
  • 上传方法调用(与上传者声明+初始化相同的脚本):

uploader.upload( connAddress, connUsername, '< ? php echo Yii::app()->session[ 'ftpPassword' ]; ?>', connRootFolder != null ? connRootFolder : "" );

任何想法如何解决我的问题?

4

1 回答 1

0

从 Javascript 调用的 Java 方法通常需要包装在AccessController.doPrivileged(..)调用中,才能被信任。

于 2012-09-10T08:12:19.967 回答