Package

Source Code of Equals

import jcifs.smb.SmbFile;

public class Equals {

    public static void main( String argv[] ) throws Exception {

        SmbFile f1 = new SmbFile( argv[0] );
        SmbFile f2 = new SmbFile( argv[1] );
System.out.println( f1 );
System.out.println( f2 );
        System.err.println( f1.equals( f2 ));
    }
}
TOP

Related Classes of Equals

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.