资源简介
包含RXTX源代码,各种环境下的jar包以及例子。
win32,64,linux测试通过。
代码片段和文件信息
JDK <= 1.4
/**
* @return A HashSet containing the CommPortIdentifier for all serial ports that are not currently being used.
*/
public static HashSet getAvailableSerialPorts() {
HashSet h = new HashSet();
Enumeration thePorts = CommPortIdentifier.getPortIdentifiers();
while (thePorts.hasMoreElements()) {
CommPortIdentifier com = (CommPortIdentifier) thePorts.nextElement();
switch (com.getPortType()) {
case CommPortIdentifier.PORT_SERIAL:
try {
CommPort thePort = com.open(“CommUtil“ 50);
thePort.close();
h.add(com);
} catch (PortInUseException e) {
System.out.println(“Port “ + com.getName() + “ is in use.“);
} catch (Exception e) {
System.err.println(“Failed to open port “ + com.getName());
e.printStackTrace();
}
}
}
return h;
}
JDK >= 5.0
/**
* @return A HashSet containing the CommPortIdentifier for all serial ports that are not currently being used.
*/
public static HashSet getAvailableSerialPorts() {
HashSet h = new HashSet();
Enumeration thePorts = CommPortIdentifier.getPortIdentifiers();
while (thePorts.hasMoreElements()) {
CommPortIdentifier com = (CommPortIdentifier) thePorts.nextElement();
switch (com.getPortType()) {
case CommPortIdentifier.PORT_SERIAL:
try {
CommPort thePort = com.open(“CommUtil“ 50);
thePort.close();
h.add(com);
} catch (PortInUseException e) {
System.out.println(“Port “ + com.getName() + “ is in use.“);
} catch (Exception e) {
System.err.println(“Failed to open port “ + com.getName());
e.printStackTrace();
}
}
}
return h;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2186 2018-03-27 12:28 rxtx\examples\Discovering available comm ports.java
文件 1026 2018-03-27 12:28 rxtx\examples\Discovering comm ports.java
文件 3782 2018-03-27 12:31 rxtx\examples\Event ba
文件 3029 2018-03-27 12:27 rxtx\examples\ParallelCommunication.java
文件 3077 2018-03-27 12:30 rxtx\examples\Two way communcation with the serial port.java
文件 166 2018-03-27 12:32 rxtx\readme.txt
文件 610316 2018-03-27 12:19 rxtx\rxtx-2.1-7-bins-r2.zip
文件 1345757 2018-03-27 12:20 rxtx\rxtx-2.1-7r2-source.zip
目录 0 2018-03-27 12:31 rxtx\examples
目录 0 2018-03-27 12:32 rxtx
----------- --------- ---------- ----- ----
1969339 10
相关资源
- 百度地图显示多点坐标并连线显示用
- 用Java+MS SQL开发的物流管理系统含源代
- Java版住院管理系统
- excel导出添加水印
- Java Socket 模拟 Ftp Server/Client
- Javaweb大作业代码
- java基于servlet框架实现的CRM客户关系管
- jena2.6.4.jar and jena2.6.4-src
- 疯狂Java讲义+疯狂+Java讲义
- JavaEE开发环境搭建.docx
- javaweb课程资源管理系统.zip
- 翁恺java课程配套ppt课件
- 仓库管理系统(JAVA)源码
- app破解工具以及教程
- 疯狂JAVA讲义第二版源码
- JavaEE 高校学生选课系统Struts2 和hibe
- javaEE做的NBA网站源码
- java长途汽车站售票系统毕业设计程序
- java门诊信息管理系统毕业设计程序
- java动态树形菜单与分页
- Java直接通过连接数据库生成对应的
- 图书馆管理系统用java+sql server2000实现
- Java利用WebSocket实现聊天系统源码
- 小型电子商务系统 jsp java web
- Aspose word for java-14.11最新完美破解版,
- aspose words for java 18.9 最新完美破解版
- mysql-connector-java-5.1.7
- java 仓库管理系统
- mysql-connector-java-8.0.16.jar
- javaweb报告
评论
共有 条评论