search
HomeJavajavaTutorialJAVA serial port programming

1. Environment configuration

(1) Unzip the copied file

Unzip javacomm20-win32.zip

Copy win32com.dll to the /jre/bin and /bin directories

Put comm Copy .jar to the /jre/lib/ext and /lib directories

Copy javax.comm.properties to the /jre/lib and /lib directories

(2) Set the environment variable

CLASSPATH=/jre /lib/ext /comm.jar;%classpath%

(3) Add the jar package to the Eclipse project

"Right-click the project-> ; properties-> java build path->libraries->add external jar" to find the location of comm.jar placed in /lib.

2. API Overview

Interface

CommDriver Part of the loadable device driver interface

CommPortOwnershipListener delivers ownership events of various communication ports

ParallelPortEventListener delivers parallel port events

SerialPortEventListener delivers serial ports Event

Class

CommPort communication port

CommPortIdentifier communication port management

ParallelPort Parallel communication port

ParallelPortEvent Parallel port event

SerialPort RS-232 serial communication port


SerialPortEven t exception class

NoSuchPortException when driven

PortInUseException is thrown when the program cannot find the specified port.

UnsupportedCommOperationException is thrown when the specified port is in use.

is thrown when the driver does not allow the specified operation. (1) CommPort class

describes the port supported by the underlying system abstract class. Contains some high-level IO control methods that are common to all different communication ports. SerialPort (serial port) and ParallelPort (parallel port) are its subclasses.

(2) CommPortIdentifier

is mainly used to manage and set up the serial port. It is the core class for access control of the serial port. The main methods are as follows: dAddPortName (String, int, Commdriver) add the end mouth name to the port list

AddPortownerShiPlistener (COMPORTOWNERSHIPLISHIPLISTENER) Listener (CommptownerShiplistener) Remove the monitor owned by the port

GetCurrentowner ( ) Get the object or application that currently occupies the port

getName() Get the port name

getPortIdentifier(CommPort) Get the CommPortIdentifier type object of the port opened by the parameter

getPortIdentifier(String) Get the CommPortIdentifier type object of the port named with the parameter

getPortIdentifiers() Get the list of ports in the system

getPortType() Get the type of the port

isCurrentlyOwned() Determine whether the current port is occupied

open(FileDescriptor) Open the port with the type described by the file

open(String, int ) Open the port, two parameters: program name, delay time (milliseconds)

(3) SerialPort

describes the underlying interface of the RS-232 serial communication port, which defines the minimum set of functions required for serial communication. You can directly read, write and set up the serial port.

A: Function of serial port parameters

getBaudRate() Get the baud rate getParity() Get the check type

getDataBits() Get the number of data bits getStopBits() Get the stop bits

setSerialPortParams(int, int, int, int ) Set the serial port parameters in order (baud rate, data bits, stop bits, parity check)

close() close the serial port

getOutputStream() get the output stream of OutputStream type

getInputStream() get the input stream of InputStream type

B: Events and event methods

isCD() Whether there is a carrier

isCTS() Whether it is clear to send

isDSR() Whether the data is ready

isDTR() Whether the data terminal is ready

isRI() Whether it rings Detect whether

isRTS() requires sending

addEventListener(SerialPortEventListener) and add a serial port event listener to the SerialPort object

removeEventListener() removes the serial port event listener in the SerialPort object

getEventType() gets the event type that occurred and the return value is int type

sendBreak(int) sets the time of the interruption process, the parameter is the millisecond value

setRTS(boolean ) Set or clear the RTS bit

setDTR(boolean) Set or clear the DTR bit

notifyOnBreakInterrupt(boolean) Set the interrupt event

notifyOnCarrierDetect(boolean) Set the carrier detection event

notifyOnCTS(boolean) Set the clear send event

notifyOnDataAvailable( boolean) Set the event that the serial port has data

notifyOnDSR(boolean) Set the data ready event

notifyOnFramingError(boolean) Set the error event

notifyOnOutputEmpty(boolean) Set the send buffer is empty event

notifyOnParityError(boolean) Set the occurrence Parity error event

notifyOnRingIndicator(boolean) Set ring detection event

C: Static member variable of serial port parameters

Member variable description Member variable description Member variable description

DATABITS_5 Data bits are 5 STOPBITS_2 Stop bits are 2 PARITY_ODD Odd check

DATABITS_6 Data bits are 6 STOPBITS_1 Stop bits are 1 PARITY_MARK Mark check

DATABITS_7 Data bits are 7 STOPBITS_1_5 Stops are 1.5 PARITY_NONE Space check

DATABITS_8 Data bits are 8 PARITY_EVEN Even check PARITY_SPACE No check



For more JAVA serial port programming related articles, please pay attention to the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Top 4 JavaScript Frameworks in 2025: React, Angular, Vue, SvelteTop 4 JavaScript Frameworks in 2025: React, Angular, Vue, SvelteMar 07, 2025 pm 06:09 PM

This article analyzes the top four JavaScript frameworks (React, Angular, Vue, Svelte) in 2025, comparing their performance, scalability, and future prospects. While all remain dominant due to strong communities and ecosystems, their relative popul

Spring Boot SnakeYAML 2.0 CVE-2022-1471 Issue FixedSpring Boot SnakeYAML 2.0 CVE-2022-1471 Issue FixedMar 07, 2025 pm 05:52 PM

This article addresses the CVE-2022-1471 vulnerability in SnakeYAML, a critical flaw allowing remote code execution. It details how upgrading Spring Boot applications to SnakeYAML 1.33 or later mitigates this risk, emphasizing that dependency updat

Node.js 20: Key Performance Boosts and New FeaturesNode.js 20: Key Performance Boosts and New FeaturesMar 07, 2025 pm 06:12 PM

Node.js 20 significantly enhances performance via V8 engine improvements, notably faster garbage collection and I/O. New features include better WebAssembly support and refined debugging tools, boosting developer productivity and application speed.

How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache?How do I implement multi-level caching in Java applications using libraries like Caffeine or Guava Cache?Mar 17, 2025 pm 05:44 PM

The article discusses implementing multi-level caching in Java using Caffeine and Guava Cache to enhance application performance. It covers setup, integration, and performance benefits, along with configuration and eviction policy management best pra

How does Java's classloading mechanism work, including different classloaders and their delegation models?How does Java's classloading mechanism work, including different classloaders and their delegation models?Mar 17, 2025 pm 05:35 PM

Java's classloading involves loading, linking, and initializing classes using a hierarchical system with Bootstrap, Extension, and Application classloaders. The parent delegation model ensures core classes are loaded first, affecting custom class loa

How to Share Data Between Steps in CucumberHow to Share Data Between Steps in CucumberMar 07, 2025 pm 05:55 PM

This article explores methods for sharing data between Cucumber steps, comparing scenario context, global variables, argument passing, and data structures. It emphasizes best practices for maintainability, including concise context use, descriptive

Iceberg: The Future of Data Lake TablesIceberg: The Future of Data Lake TablesMar 07, 2025 pm 06:31 PM

Iceberg, an open table format for large analytical datasets, improves data lake performance and scalability. It addresses limitations of Parquet/ORC through internal metadata management, enabling efficient schema evolution, time travel, concurrent w

How can I implement functional programming techniques in Java?How can I implement functional programming techniques in Java?Mar 11, 2025 pm 05:51 PM

This article explores integrating functional programming into Java using lambda expressions, Streams API, method references, and Optional. It highlights benefits like improved code readability and maintainability through conciseness and immutability

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.