java系列认证软件工程师_Java高级软件工程师人才缺口巨大

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();

}

}

}

}

文章知识点与官方知识档案匹配,可进一步学习相关知识Java技能树首页概览92440 人正在系统学习中 相关资源:1stopt数据拟合软件_曲线拟合软件-深度学习文档类资源-CSDN文库

声明:本站部分文章及图片源自用户投稿,如本站任何资料有侵权请您尽早请联系jinwei@zod.com.cn进行处理,非常感谢!

上一篇 2021年1月22日
下一篇 2021年1月22日

相关推荐