java 监控usb端口插拔_如何监控某种类型的USB设备的插拔?

用System.Managment class 试试

下面是我在网上找到的代码

出处

http://www.eggheadcafe.com/software/aspnet/31850441/c-usb-pluginremoval-h.aspx

代码如下:

// This code demonstrates how to monitor the UsbControllerDevice for

// the arrival of creation/operation events

using System;

using System.ComponentModel;

using System.Runtime.InteropServices;

using System.Management;

class WMIEvent {

public static void Main() {

WMIEvent we = new WMIEvent();

ManagementEventWatcher w= null;

WqlEventQuery q;

ManagementOperationObserver observer = new ManagementOperationObserver();

// Bind to local machine

ManagementScope scope = new ManagementScope("root\\CIMV2");

scope.Options.EnablePrivileges = true; //set required privilege

try {

q = new WqlEventQuery();

q.EventClassName = "__InstanceOperationEvent";

q.WithinInterval = new TimeSpan(0,0,3);

q.Condition = @"TargetInstance ISA 'Win32_DiskDrive' ";

w = new ManagementEventWatcher(scope, q);

w.EventArrived += new EventArrivedEventHandler(we.DiskEventArrived);

w.Start();

Console.ReadLine(); // block main thread for test purposes

}

catch(Exception e) {

Console.WriteLine(e.Message);

}

finally {

w.Stop();

}

}

public void DiskEventArrived(object sender, EventArrivedEventArgs e) {

//Get the Event object and display its properties (all)

foreach(PropertyData pd in e.NewEvent.Properties) {

ManagementBaseObject mbo = null;

if(( mbo = pd.Value as ManagementBaseObject) != null) {

Console.WriteLine("--------------Properties------------------");

foreach(PropertyData prop in mbo.Properties)

Console.WriteLine("{0} - {1}", prop.Name, prop.Value);

}

}

}

}

下面几篇文章也提供给你参考

MSDN 中介绍如何注册驱动的通知消息

http://msdn.microsoft.com/en-us/library/aa363432.aspx

Detecting USB Stick Plug in and Plug out (USB Harddrive)

http://bytes.com/groups/net-c/234006-detecting-usb-stick-plug-plug-out-usb-harddrive

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值