博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java系列认证软件工程师_Java高级软件工程师人才缺口巨大
阅读量:6643 次
发布时间:2019-06-25

本文共 1045 字,大约阅读时间需要 3 分钟。

if (device != null)

{

// Obtain the current Configuration of the device and the number of

// Interfaces available under the current Configuration.

Configuration config = device.getConfiguration();

int total_interface = config.getNumInterfaces();

// Traverse through the Interfaces

for (int k=0; k  {

// Access the currently Interface and obtain the number of

// endpoints available on the Interface.

Interface itf = config.getInterface(k, 0);

int total_ep = itf.getNumEndpoints();

// Traverse through all the endpoints.

for (int l=0; l  {

// Access the endpoint, and obtain its I/O type.

Endpoint ep = itf.getEndpoint(l);

String io_type = ep.getType();

boolean input = ep.isInput();

// If the endpoint is an input endpoint, obtain its

// InputStream and read in data.

if (input)

{

InputStream in;

in = ep.getInputStream();

// Read in data here

in.close();

}

// If the Endpoint is and output Endpoint, obtain its

// OutputStream and write out data.

else

{

OutputStream out;

out = ep.getOutputStream();

// Write out data here.

out.close();

}

}

}

}

转载地址:http://zbevo.baihongyu.com/

你可能感兴趣的文章
PHP 生成随机字符串
查看>>
数据结构-算术表达式求值
查看>>
关于chrome被篡改主页修复方法
查看>>
电子商务网站中店铺按销量的排序
查看>>
oracle字段类型
查看>>
jQuery 的选择器常用的元素查找方法
查看>>
Linux命令未找到(command not found),误删Linux path原始路径
查看>>
SSE指令集系列之三
查看>>
LAMMPS源代码(1)- 源自精小木虫论坛华贴
查看>>
Linux 下安装NodeJS (二进制包)
查看>>
函数初识
查看>>
桂花网亮相第76届教育装备展 开启智慧校园生态新模式
查看>>
EF6 第一次,或者相隔一段时间变慢咋办? 我们来优化下
查看>>
find 的一些用法
查看>>
Objective-C学习笔记--@interface
查看>>
【转】只打开一个子窗口
查看>>
WPF:类型转换器的实现
查看>>
03.Longest Substring Without Repeating Characters
查看>>
UVA 1345 Jamie's Contact Groups
查看>>
PowerShell管理Azure
查看>>