Java串口编程

Win32串口编程前期准备
1,unzip javacomm20-win32.zip 到c:/下
2,copy c:/commapi/win32com.dll c:/jdk1.4.2/bin
3,copy c:/commapi/javax.comm.properties c:/jdk1.1.6/lib
4,copy c:/commapi/comm.jar c:/jdk1.1.6/lib
5,set CLASSPATH=c:/jdk1.1.6/lib/comm.jar;%classpath%

Comm API基础
在javax.comm下有13个类和接口,分别是
4个接口
CommDriver 可负载设备(the loadable device)驱动程序接口的一部分
CommPortOwnershipListener 传递各种通讯端口的所有权事件
ParallelPortEventListener 传递并行端口事件
SerialPortEventListener 传递串行端口事件
6个类
CommPort 通讯端口
CommPortIdentifier通讯端口管理
ParallelPort 并行通讯端口
ParallelPortEvent 并行端口事件
SerialPort RS-232串行通讯端口
SerialPortEvent 串行端口事件
3个异常类
NoSuchPortException 当驱动程序不能找到指定端口时抛出
PortInUseException 当碰到指定端口正在使用中时抛出
UnsupportedCommOperationException 驱动程序不允许指定操作时抛出

几个主要类或接口
 1.枚举出系统所有的RS232端口

  在开始使用RS232端口通讯之前,我们想知道系统有哪些端口是可用的,以下代码列出系统中所有可用的RS232端口:

Enumeration en = CommPortIdentifier.getPortIdentifiers();
 
CommPortIdentifier portId;
 
while (en.hasMoreElements())
 
{
 
portId = (CommPortIdentifier) en.nextElement();
 
/*如果端口类型是串口,则打印出其端口信息*/
 
if (portId.getPortType() == CommPortIdentifier.PORT_SERIAL)
 
{
 
System.out.println(portId.getName());
 
}
 
}

在我的电脑上以上程序输出以下结果:

  COM1


  CommPortIdentifier类的getPortIdentifiers方法可以找到系统所有的串口,每个串口对应一个CommPortIdentifier类的实例。

  2.打开端口

  如果你使用端口,必须先打开它。

try{
 
CommPort serialPort = portId.open("My App", 60);
 
/*从端口中读取数据*/
 
InputStream input = serialPort.getInputStream();
 
input.read(...);
 
/*往端口中写数据*/
 
OutputStream output = serialPort.getOutputStream();
 
output.write(...)
 
...
 
}catch(PortInUseException ex)
 
{ ... }

通过CommPortIdentifier的open方法可以返回一个CommPort对象。open方法有两个参数,第一个是 String,通常设置为你的应用程序的名字。第二个参数是时间,即开启端口超时的毫秒数。当端口被另外的应用程序占用时,将抛出 PortInUseException异常。

  在这里CommPortIdentifier类和CommPort类是一一对应的关系。CommPortIdentifier主要负责端口的初始化和开启,以及管理它们的占有权。而CommPort则是跟实际的输入和输出功能有关的。通过CommPort的getInputStream()可以取得端口的输入流,它是java.io.InputStream接口的一个实例。我们可以用标准的InputStream的操作接口来读取流中的数据,就像通过FileInputSteam读取文件的内容一样。相应的, CommPort的getOutputStream可以获得端口的输出流,这样就可以往串口输出数据了。

 

 3.关闭端口

 CommPortIdentifier类只提供了开启端口的方法,而要关闭端口,则要调用CommPort类的close()方法。

你可能感兴趣的:(java,编程,c,String,通讯,output)