All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jcifs_1.3.3.examples.ThreadedNbtQuery Maven / Gradle / Ivy

Go to download

JCIFS is an Open Source client library that implements the CIFS/SMB networking protocol in 100% Java

There is a newer version: 1.3.14-kohsuke-1
Show newest version
import jcifs.netbios.*;

public class ThreadedNbtQuery {

    static class QThread extends Thread {
        String name; 

        QThread( String name ) {
            this.name = name;
        }

        public void run() {
            try {
                yield();
                System.out.println( getName() + ": started" );
                NbtAddress.getByName( name );
                System.out.println( getName() + ": done" );
            } catch( Exception x ) {
                x.printStackTrace();
            }
        }
    }

    public static void main(String[] argv) throws Exception {
        if( argv.length < 2 ) {
            System.out.println( "java ThreadedNbtQuery name [name [name [...]]]" );
            return;
        }

        QThread[] t = new QThread[argv.length];
        for( int i = 0; i < argv.length; i++ ) {
            t[i] = new QThread( argv[i] );
        }
        for( int j = 0; j < argv.length; j++ ) {
            t[j].start();
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy