Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
5answers
20k views

java inputstream read blocking

According to the java api, the InputStream.read() is described as: If no byte is available because the end of the stream has been reached, the value -1 is returned. This method blocks until ...
6
votes
2answers
8k views

Serial Communication between Java RXTX and Arduino

I'm trying to communicate between my PC (Windows 7 using Netbeans and RXTX) with an Arduino Pro, using the serial port. The Arduino is actually connected to the PC using an FTDI cable. The code is ...
5
votes
3answers
2k views

Thread interrupt not ending blocking call on input stream read

I'm using RXTX to read data from a serial port. The reading is done within a thread spawned in the following manner: CommPortIdentifier portIdentifier = CommPortIdentifier.getPortIdentifier(port); ...
4
votes
3answers
4k views

How to access USB ports in java

Hi I'm trying to write a java application that accesses the usb ports to some read and writes to a device connected through usb. The problem I face is that I don't know what exactly to use in java to ...
3
votes
1answer
463 views

Java Serial I/O in Windows x64 using JRE x86

I have a Java application running on Windows 7 64-bit, but running on a 32-bit version of JRE. I need this application to communicate with a serial com port, and apparently I need a little help. :) ...
3
votes
0answers
271 views

Is constant polling in RXTX necessary?

While trying to figure out this problem (any help there is appreciated), I ran RXTX while monitoring its activity using PortMon and noticed that RXTX constantly checks if data is available, even when ...
2
votes
1answer
74 views

Regex pattern matching doesn't work specifc string in java

I was using a REGEX pattern in java (given below): for the string: It works fine. But when I tried using the below pattern: for the string:str = Sorry about the image upload. Looks like the ...
2
votes
0answers
376 views

RXTX difficulties in Windows

Good morning, I have a Java program, orderPrinter, that communicates to POS printer via USB-to-serial communication. I installed the RXTX and javax.comm libraries as per the instructions, and after ...
2
votes
3answers
702 views

inputstream.available() is 0 always

I have no idea of what is happening to my code. i am getting no errors and no response as well. I am writing the data to the serialport and waiting for the response by activating ...
2
votes
3answers
198 views

Prevent NoClassDefFoundError from crashing program

I'm writing a Java program for my work-study program which relies on the RXTX serial drivers. It is running well on my testing machines, however I have noticed that when run on a machine that does not ...
2
votes
3answers
4k views

Problem receving in RXTX

I've been using RXTX for about a year now, without too many problems. I just started a new program to interact with a new piece of hardware, so I reused the connect() method I've used on my other ...
1
vote
0answers
36 views

Java serial communication: Rxtx unable to find serial ports on FriendlyARM mini2440

I am attempting to get the Java rxtx library to work on the FriendlyARM mini2440. I am using emDebian "squeeze" on the mini244. The rxtx library is taken from "lenny" as the squeeze version does not ...
1
vote
1answer
229 views

RXTX x64 and x86

I've a software where I use RXTXcomm.jar on an applet java and inside applet I'm communicating with port serial, so, I need to communicate and it works with 2 versions, x86 and x64, but RXTXcomm.jar ...
1
vote
0answers
118 views

RXTXCommDriver problem

Hi i have simple code: import gnu.io.CommPortIdentifier; import java.util.Enumeration; public class test { public static void main(String[] args) { Enumeration pList = ...
1
vote
1answer
447 views

Using Rxtx library to send messages to USB connected phone causes computer lock up/crash — why?

Ultimately I would like to use a Java program to send and receive messages from a phone that I have plugged in via USB. I can do this using a C# program, however the program I want to send and receive ...
1
vote
3answers
648 views

Java: Observer or synchronized+notify() on a serial port incoming data

I have a serial port with data coming in. I implemented the serial port connection with RXTX library with a serial port event listener. So whenever there is incoming data available in the serial port, ...
1
vote
1answer
732 views

Java/RXTX issue Windows XP

I'm currently testing a Java/MySQL POS system I've written for a small bar, and am having problems with the cash draw. The cash drawer has an RJ11 plug connected via a USB->Serial box, and writing ...
1
vote
2answers
948 views

java serial I/O: handling USB serial connection/disconnection in a robust manner

I'm using rxtx for serial I/O handling in Java with an FTDI2232H that provides a USB comm port. It works great, with one exception: if I unplug the USB cable, so that the COM port disappears at ...
1
vote
1answer
2k views

Serial Port Not getting closed. I want to release the COM port

Serial Port Not getting closed. I want to release the COM port ... Below is my code.... import java.io.*; import java.util.*; import gnu.io.*; public class ReadCommPort implements ...
1
vote
3answers
2k views

rxtx com port

I am using rxtx api to read data from a GPS device over a com port. Right now I'm finding the correct com port by reading a config file and looking for the port listed. The problem that I'm having is ...
1
vote
5answers
6k views

Dynamically loading a native library inside Java applet

I am trying to write a Java applet that will read from a user's serial port. For this I am using the Java Comm API in conjuction with the RXTX library. I've successfully managed to read data through a ...
1
vote
10answers
7k views

NoSuchPortException using RXTX Java library on Windows?

I have followed the instructions to setup rxtx on windows from http://www.jcontrol.org/download/readme_rxtx_en.html. What I did exactly was copy rxtxSerial.dll to "C:\Program ...
1
vote
3answers
2k views

Writing data over RxTx using usbserial?

I'm using the RxTx library over usbserial on a Linux distro. The RxTx lib seems to behave quite differently (in a bad way) than how it works over serial. One of my biggest problems is that the RxTx ...
1
vote
1answer
1k views

Which thread should I process the RxTx SerialEvent.DATA_AVAILABLE event?

I'm using the RxTx library over usbserial on a Linux distro. The RxTx lib seems to behave quite differently (in a bad way) than how it works over serial. My application has several threads and one ...
0
votes
1answer
8 views

gnu.io.PortInUseException: Unknown Application?

void connect ( String portName ) throws Exception { CommPortIdentifier portIdentifier = CommPortIdentifier.getPortIdentifier(portName); if ( portIdentifier.isCurrentlyOwned() ) { ...
0
votes
2answers
11 views

how to test serial port communication in windows with rxtx?

I am using RXTX with Java to connect to serial port. But now i have to test whether the communication is working properly or not? How to do this. Do i need modem or can we test any way in my local ...
0
votes
0answers
37 views

How to close Rxtx serial port?

When retrieving available serial ports using the Rxtx library (see second example), the close() method will block, even if the port has been successfully opened. How do I set a timeout on the close ...
0
votes
0answers
20 views

How to recompile RXTX?

I need to change a little detail on RXTX for x64 in order to try to reduce latency. I've already downloaded the sources from here, but I don't know what to do next. I only want to change a line of ...
0
votes
0answers
48 views

Trying to read the data from serial port. But nothing is happening on the serial port. Using RXTXcomm library in java

I am using RXTXcomm library in 64 bit environment. Everything runs fine without errors. I have had added an event listener for the serial port, even if the data is available on the serial port the ...
0
votes
1answer
81 views

Processing compile error caused by RxTx lib

I use processing to read from Arduino Serial. To do this i use the processing class Serial, but when i compile, i get this error: WARNING: RXTX Version mismatch Jar version = RXTX-2.2pre1 native lib ...
0
votes
0answers
66 views

packing rxtx library in a jar with maven assembly plugin

i need to create a jar file with dependencies and i need to add rxtx library as a dependency. but when i create the jar i cannot see rxtx in the jar file. please post me the correct way to do this. ...
0
votes
1answer
112 views

Why is there errors when compiling this J2ME code with RXTX?

I compiled this code with Sun Java ME Platform SDK 3.0 , the code will listen to serial port : import gnu.io.CommPortIdentifier; import gnu.io.SerialPort; import gnu.io.SerialPortEvent; import ...
0
votes
2answers
493 views

java.lang.UnsatisfiedLinkError: no rxtxSerial in java.library.path

I am trying to use the 64 bit rxtx serial communication library (downloaded from cloudhopper) with 64bit windows 7 and eclipse. I get the message: java.lang.UnsatisfiedLinkError: no rxtxSerial in ...
0
votes
1answer
54 views

Enumeration warning

I want to execute with Eclipse the example code provided from this RxTx web site : import gnu.io.*; public class SerialPortLister { /** * @param args */ public static void ...
0
votes
2answers
137 views

PortInUseException - Java Serial Communication

Im developing an application for serial communication in java with RXTX.Now im getting an error " Port already in use: gnu.io.PortInUseException: Unknown Application " while opening a port.But i dont ...
0
votes
1answer
74 views

Upload file through serial port

Is there any way how to upload file to embeded device throw Serial port? Im using RXTX, but I thing that I allready only sent data from file, not upload this file. Thanks for advice. public static ...
0
votes
0answers
46 views

wrong com port detected by java/RxTx on Windows xp

Im developing an application for serial communication in java.I used RXTX(rxtx-2.1-7r2) library and it detecting the com port,but that com port is not available in my system.Even I did'nt connected ...
0
votes
0answers
247 views

Java Serial Communication Application Development

I want to develop an application using java for serial communication.Its a GUI to interact with the Micro Controller via serial communication.Sun did'nt provide any package for this serial ...
0
votes
1answer
74 views

Java recognize AT commands with RXTX library

I'm going to read COM port in java with RXTX library. I want to recognize the flow of char in AT commands. My reading function cycle a buffer and save all on a String var. InputStream in; //var ...
0
votes
1answer
79 views

send CRC command through the serial port using java

is there any way to send CRC command through serial port from one PC to another one using Java! here is the code to connect to the port and open it... public class Write { static Enumeration ...
0
votes
1answer
75 views

how to send command to embedded pc connected by serial port

i want to send commands to to an embadded pc whihch connected to my pc through serial port ... here is the code that i use ... public class Write { static Enumeration portList; static ...
0
votes
1answer
183 views

RXTX how to send commends to device

How to send by RXTX commends to device i found this but how to send commends ?? Should it be string or hex or byte ?? I dont know
0
votes
2answers
307 views

serial port use from Java on Windows 64 - and access restrictions?

I have a Java program that correctly accessed a serial port on Windows XP, and am trying to get it working on my Windows 7 (Home Premium) box. I am developing in Eclipse. The program currently uses ...
0
votes
3answers
356 views

RXTX how to reading from com port

Hi i have somthing like this package compot; import java.util.Enumeration; import gnu.io.*; public class core { private static SerialPort p; /** * @param args */ public ...
0
votes
0answers
125 views

Rxtxcomm error on disconnecting

i am working with com port . I successfully opens the com port and do all the work. While closing the com port a crash is happens . The code is public void close() throws GPSException { if ...
0
votes
0answers
184 views

serialport write and read on windows not working

I first tried to use javax.comm to connect to the serial port (COM4). It did not even open the serial port. Then I tried to use rxtx libraries (rxtx-2.2pre2) to connect. It connects and writes the ...
0
votes
2answers
104 views

Prevent RXTX from printing version info

I am using RXTX 2.1-7 on windows, and I have one issue. Whenever I run a program using the RXTX library, the following generic versioning info gets printed: Stable Library ...
0
votes
1answer
676 views

Java applet with rxtx components for serial communication

I am trying to build an applet that can open a serial port and communicate with the same. I have used rxtxcomm.jar for the serial communications. I have an applet built that works in the eclipese ...
0
votes
3answers
1k views

RXTX serial connection - blocking read() problem

I am trying to use the RXTX library for blocking serial communication on Windows (XP and 7). I have tested the connection with Hyperterminal in both ends, and it works flawlessly. I set up the ...
0
votes
1answer
630 views

RXTX getPortIdentifiers() stuck

I have problem to read lit of serial ports.when programe reach at CommPortIdentifier.getPortIdentifier() it stuck for almost 5 minnutes. as I observe delay could be due to scaning all ports iin ...

1 2