usb detection

usb detection

i want to detect usb device using javacode

View Answers

June 9, 2012 at 4:50 PM

try this:

import java.io.*;
import javax.swing.*;
public class DetectWin extends JFrame
{
    JPanel loginPnl = new JPanel();
    JTextField Dfield = new JTextField("", 20);
    
    DetectWin()
    {
        super("AUTHORIZATION");
        setSize(350, 100);
        setLocation(400, 300);
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        add(loginPnl);
        setVisible(true);
        setResizable(false);
        
        loginPnl.add(Dfield);
        String[] letters = new String[]{ "A", "B", "C", "D", "E", "F", "G", "H", "I", "Z"};
        File[] drives = new File[letters.length];
        boolean[] isDrive = new boolean[letters.length];

        for ( int i = 0; i < letters.length; ++i )
            {
            drives[i] = new File(letters[i]+":/");

            isDrive[i] = drives[i].canRead();
            }

         Dfield.setText("Waiting for devices....");

         while(true)
            {
            for ( int i = 0; i < letters.length; ++i )
                {
                boolean pluggedIn = drives[i].canRead();

                if ( pluggedIn != isDrive[i] )
                    {
                    if ( pluggedIn )
                    	Dfield.setText("Drive "+letters[i]+" has been plugged in");
                    else
                    	Dfield.setText("Drive "+letters[i]+" has been unplugged");

                    isDrive[i] = pluggedIn;
                    }
                }

            try { Thread.sleep(100); }
            catch (InterruptedException e) { }
            }
    }
    public static void main(String args[])
    {
        DetectWin AUTHORIZATION = new DetectWin();
    }
}


January 30, 2013 at 7:30 AM

hiii...

i tried this program but cannot read or detect my USB device. can you explain me, why...?

tq


February 25, 2013 at 8:40 AM

Hiii, nice posting...

i tried this code and running more than 5 minutes but can not read or detect my USB device. i'm using windows 7-64 bit, netbeans 7.1.2 and my device using USB type B connected to PC using USB type A.

can you explain me, why...?

best regards

-kiper-









Related Tutorials/Questions & Answers:
usb detection
usb detection  i want to detect usb device using javacode
ModuleNotFoundError: No module named 'usb'
ModuleNotFoundError: No module named 'usb'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'usb' How to remove the ModuleNotFoundError: No module named 'usb' error
Advertisements
ModuleNotFoundError: No module named 'usb-iss'
ModuleNotFoundError: No module named 'usb-iss'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'usb-iss' How to remove the ModuleNotFoundError: No module named 'usb-iss
ModuleNotFoundError: No module named 'usb-manager'
ModuleNotFoundError: No module named 'usb-manager'  Hi, My Python... 'usb-manager' How to remove the ModuleNotFoundError: No module named 'usb-manager' error? Thanks   Hi, In your python environment
ModuleNotFoundError: No module named 'bootable-usb'
ModuleNotFoundError: No module named 'bootable-usb'  Hi, My Python... 'bootable-usb' How to remove the ModuleNotFoundError: No module named 'bootable-usb' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'plover-stenograph-usb'
ModuleNotFoundError: No module named 'plover-stenograph-usb'  Hi...: No module named 'plover-stenograph-usb' How to remove the ModuleNotFoundError: No module named 'plover-stenograph-usb' error? Thanks   Hi
ModuleNotFoundError: No module named 'snips-skill-usb-power'
ModuleNotFoundError: No module named 'snips-skill-usb-power'  Hi...: No module named 'snips-skill-usb-power' How to remove the ModuleNotFoundError: No module named 'snips-skill-usb-power' error? Thanks   Hi
ModuleNotFoundError: No module named 'usb_ser_mon'
ModuleNotFoundError: No module named 'usb_ser_mon'  Hi, My Python... 'usb_ser_mon' How to remove the ModuleNotFoundError: No module named 'usb_ser_mon' error? Thanks   Hi, In your python environment
ModuleNotFoundError: No module named 'usb-can-analyzer'
ModuleNotFoundError: No module named 'usb-can-analyzer'  Hi, My... named 'usb-can-analyzer' How to remove the ModuleNotFoundError: No module named 'usb-can-analyzer' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'usb_ser_mon'
ModuleNotFoundError: No module named 'usb_ser_mon'  Hi, My Python... 'usb_ser_mon' How to remove the ModuleNotFoundError: No module named 'usb_ser_mon' error? Thanks   Hi, In your python environment
ModuleNotFoundError: No module named 'aio-usb-hotplug'
ModuleNotFoundError: No module named 'aio-usb-hotplug'  Hi, My... named 'aio-usb-hotplug' How to remove the ModuleNotFoundError: No module named 'aio-usb-hotplug' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'usb-barcode-scanner'
ModuleNotFoundError: No module named 'usb-barcode-scanner'  Hi, My... named 'usb-barcode-scanner' How to remove the ModuleNotFoundError: No module named 'usb-barcode-scanner' error? Thanks   Hi
ModuleNotFoundError: No module named 'usb-barcode-scanner'
ModuleNotFoundError: No module named 'usb-barcode-scanner'  Hi, My... named 'usb-barcode-scanner' How to remove the ModuleNotFoundError: No module named 'usb-barcode-scanner' error? Thanks   Hi
unique manufacturing id of a usb flash drive.
unique manufacturing id of a usb flash drive.  I need code for java application to read the unique manufacturing id of a usb flash drive. Please help me ? thanking you
VoIP USB Phone
VoIP USB Phone          A Corinex VoIP USB Phone A USB phone which can... included in the USB phone packaging to be able to use this software
ModuleNotFoundError: No module named 'RFID-UUID-USB-Card-Reader'
ModuleNotFoundError: No module named 'RFID-UUID-USB-Card-Reader'  Hi...: No module named 'RFID-UUID-USB-Card-Reader' How to remove the ModuleNotFoundError: No module named 'RFID-UUID-USB-Card-Reader' error? Thanks  
JMF WebCam detection problem - Framework
JMF WebCam detection problem  Hello friends, I am using JMF to operate my web cam.My usb webcam works perfectly with JMF, I used it in JMStudio... = CaptureDeviceManager.getDeviceList( null ); my USB "webcam" is detected however when i
how to run java program that has several classes under package from usb drive?
how to run java program that has several classes under package from usb drive?  I have an assignment where I have to submit my code in flash drive. I did all coding in eclipse and getting all output. I tried running it through
face detection and face recognition
face detection and face recognition   hi,i will create a project detection and recognition of face in java , i create the face detection using opne... will send the part of face detection if you want help me please
Version of com.51degrees>device-detection dependency
List of Version of com.51degrees>device-detection dependency
ModuleNotFoundError: No module named 'anomaly-detection'
ModuleNotFoundError: No module named 'anomaly-detection'  Hi, My... named 'anomaly-detection' How to remove the ModuleNotFoundError: No module named 'anomaly-detection' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'focus-detection'
ModuleNotFoundError: No module named 'focus-detection'  Hi, My... named 'focus-detection' How to remove the ModuleNotFoundError: No module named 'focus-detection' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'hotword_detection'
ModuleNotFoundError: No module named 'hotword_detection'  Hi, My... named 'hotword_detection' How to remove the ModuleNotFoundError: No module named 'hotword_detection' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'mlx9064x-blob-detection'
ModuleNotFoundError: No module named 'mlx9064x-blob-detection'  Hi...: No module named 'mlx9064x-blob-detection' How to remove the ModuleNotFoundError: No module named 'mlx9064x-blob-detection' error? Thanks   
ModuleNotFoundError: No module named 'napari-detection'
ModuleNotFoundError: No module named 'napari-detection'  Hi, My... named 'napari-detection' How to remove the ModuleNotFoundError: No module named 'napari-detection' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'object-detection'
ModuleNotFoundError: No module named 'object-detection'  Hi, My... named 'object-detection' How to remove the ModuleNotFoundError: No module named 'object-detection' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'open-detection'
ModuleNotFoundError: No module named 'open-detection'  Hi, My... named 'open-detection' How to remove the ModuleNotFoundError: No module named 'open-detection' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'phishing-detection'
ModuleNotFoundError: No module named 'phishing-detection'  Hi, My... named 'phishing-detection' How to remove the ModuleNotFoundError: No module named 'phishing-detection' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'ridge-detection'
ModuleNotFoundError: No module named 'ridge-detection'  Hi, My... named 'ridge-detection' How to remove the ModuleNotFoundError: No module named 'ridge-detection' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'ripple-detection'
ModuleNotFoundError: No module named 'ripple-detection'  Hi, My... named 'ripple-detection' How to remove the ModuleNotFoundError: No module named 'ripple-detection' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'robot-detection'
ModuleNotFoundError: No module named 'robot-detection'  Hi, My... named 'robot-detection' How to remove the ModuleNotFoundError: No module named 'robot-detection' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'sprites-detection'
ModuleNotFoundError: No module named 'sprites-detection'  Hi, My... named 'sprites-detection' How to remove the ModuleNotFoundError: No module named 'sprites-detection' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'sprites-detection'
ModuleNotFoundError: No module named 'sprites-detection'  Hi, My... named 'sprites-detection' How to remove the ModuleNotFoundError: No module named 'sprites-detection' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'spriteutil-detection'
ModuleNotFoundError: No module named 'spriteutil-detection'  Hi...: No module named 'spriteutil-detection' How to remove the ModuleNotFoundError: No module named 'spriteutil-detection' error? Thanks   Hi
ModuleNotFoundError: No module named 'anomaly-detection'
ModuleNotFoundError: No module named 'anomaly-detection'  Hi, My... named 'anomaly-detection' How to remove the ModuleNotFoundError: No module named 'anomaly-detection' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'burst_detection'
ModuleNotFoundError: No module named 'burst_detection'  Hi, My... named 'burst_detection' How to remove the ModuleNotFoundError: No module named 'burst_detection' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'change_detection'
ModuleNotFoundError: No module named 'change_detection'  Hi, My... named 'change_detection' How to remove the ModuleNotFoundError: No module named 'change_detection' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'color_detection'
ModuleNotFoundError: No module named 'color_detection'  Hi, My... named 'color_detection' How to remove the ModuleNotFoundError: No module named 'color_detection' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'crawler_detection'
ModuleNotFoundError: No module named 'crawler_detection'  Hi, My... named 'crawler_detection' How to remove the ModuleNotFoundError: No module named 'crawler_detection' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'detection-models'
ModuleNotFoundError: No module named 'detection-models'  Hi, My... named 'detection-models' How to remove the ModuleNotFoundError: No module named 'detection-models' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'detection-utils'
ModuleNotFoundError: No module named 'detection-utils'  Hi, My... named 'detection-utils' How to remove the ModuleNotFoundError: No module named 'detection-utils' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'detection-va'
ModuleNotFoundError: No module named 'detection-va'  Hi, My Python... 'detection-va' How to remove the ModuleNotFoundError: No module named 'detection-va' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'face-detection'
ModuleNotFoundError: No module named 'face-detection'  Hi, My... named 'face-detection' How to remove the ModuleNotFoundError: No module named 'face-detection' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'focus-detection'
ModuleNotFoundError: No module named 'focus-detection'  Hi, My... named 'focus-detection' How to remove the ModuleNotFoundError: No module named 'focus-detection' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'gas-detection'
ModuleNotFoundError: No module named 'gas-detection'  Hi, My... 'gas-detection' How to remove the ModuleNotFoundError: No module named 'gas-detection' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'gtlang_detection'
ModuleNotFoundError: No module named 'gtlang_detection'  Hi, My... named 'gtlang_detection' How to remove the ModuleNotFoundError: No module named 'gtlang_detection' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'hotword_detection'
ModuleNotFoundError: No module named 'hotword_detection'  Hi, My... named 'hotword_detection' How to remove the ModuleNotFoundError: No module named 'hotword_detection' error? Thanks   Hi, In your
php browser detection script - PHP
php browser detection script   I need a browser detection script in PHP. I am creating my application compatible to firefor, mozila and IE too
detection of the operating system on the client machine
detection of the operating system on the client machine  How to detect the operating system on the client machine
Java Circle to Circle collision detection
Java Circle to Circle collision detection  Java Circle to Circle collision detection

Ads