Tagged Questions
javax.comm is the Java Communications API. This API allows Java to access serial and parallel ports, and perhipherals attached to serial and parallel ports, including smartcards, modems, and fax machines. This API predates the JCP, so it doesn't have a JSR.
4
votes
6answers
6k views
Problem of using the javax.comm API on windows 7
Hey friends i am using the javax.comm API to help my program communicate to a hardware over the serial port. I am using the Windows 7, and netbeansIDE9. i used the common java program to check the ...
3
votes
2answers
445 views
How to deploy Java Communications API
I've been developing a java application with the eclipse RCP which requires the Java Communications API. Now as the javax.comm has to be setup first (install javax.comm.properties, win32comm.dll and ...
2
votes
2answers
571 views
How to get list of available serial ports in my pc using Java?
I just run some codes to get a list of available ports n my cmputer and it returned me false when I have 3 com ports that are free. How do I solve this prob?
My codes:
public static void ...
2
votes
1answer
2k views
How to add a “driver” to javax.comm? Serial port programming in Java
I am trying to use a RS-232 serial port on my PC with javax.comm class. I am newby on that API, so first of all I go through the documentation and I find out that the first thing you should do is ...
1
vote
1answer
70 views
How to read sms from gsm using java comm?
I found free source project to send sms using java comm:
http://code.google.com/p/find-ur-pal/source/browse/src/?r=21
Function sending sms looks like this:
public void run(){
boolean ...
1
vote
0answers
40 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
211 views
How to get javax.comm API?
I'd recently downloaded a project on SMS sending, but when I tries to compile the code it gives error on line import javax.comm.*;.
Can anybody tell me where to find javax.comm and where to place ...
1
vote
4answers
280 views
Adding comm.jar into my jar
I add comm.jar library into my .jar and I get javax.comm.NoSuchPortException.
Is this bug because I haven't add javax.comm.properties and win32com.dll into my jar? How can I add this file inside ...
1
vote
0answers
107 views
javax.comm only seems to send one message
I am trying to communicate from my computer to a circuit board over a serial port using javax.comm. I wrote a program (based on the SimpleRead and SimpleWrite examples) that will take any data ...
1
vote
2answers
137 views
Send command to device with Java
I want to connect magnetic card reader, send commands and get responses with Java (COM Port) in Windows XP. I have .h file & dll. I want use dll functions. How can I connect or send device?
1
vote
4answers
2k views
How do I get Maven to download javax.comm dependency?
I need the javax.comm library when building my project on our Hudson build server with Maven. In my projects pom.xml file I have the dependency like this:
<dependency>
...
1
vote
2answers
163 views
Advice on unit testing, class to test has dependency on Java serial port
I am working on a large legacy java application. It already has an extensive existing framework in place for handling device drivers. I need to create a new device driver for a device that connects to ...
1
vote
3answers
656 views
javax.comm: Error when device is disconnected
I have an application that reads data from a com port using javax.comm.
The problem I am having is that if the device that I'm reading from is unexpectedly disconnected I get an error in the console ...
0
votes
3answers
51 views
Java which library I should use to receive and send sms via RS232 on Windows and Linux
I want to write application to send sms via COM port. Currently I have Windows, but then this application should works on Linux too.
I found javax.comm library here: ...
0
votes
2answers
80 views
Can't download javax.comm
I'm making a Java ECG Software which needs to be able to communicate with an ECG through serial communication. However, the java API javax.comm is nowhere to be found. I have searched Oracle but ...
0
votes
0answers
33 views
Serial port param values prob
I'm trying to read/write some data from a COM port. The program sets up the serial port parameter values as follows:
serialPort.setSerialPortParams(9600, SerialPort.DATABITS_8, SerialPort.STOPBITS_1, ...
0
votes
0answers
50 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
139 views
Java Comm API Package download [closed]
Possible Duplicate:
Where can I get to download Java comm api?
I'm looking for a link to download sun's javax.comm package for Ubuntu(linux x86 and x64). I looked at this link:
...
0
votes
1answer
44 views
Alternatives of javax.comm
Hi all i want to control a parallel port through java code, when i googled i found a few packages like javax.comm , RXTX, SerialIO.com (website) etc. Currently i have written a native code(in C) for ...
0
votes
2answers
157 views
add javax.comm API on a mac
I would like make an java app that communicates with a serial device(handheld scanner) so that the app is platform independent.
I have found a few code examples, and when I copy them into Eclipse it ...
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
0answers
89 views
Java Serial Communication using Javax.comm and saving variables into an array
Ok the idea is that i want to use serial communication in java, using javax.comm. What I want to do exactly is read a line though serial communication and save it in an array.
For example every time ...
0
votes
1answer
243 views
possible to import javax.comm on Android? want to open serial device
I have a rooted Android device with a USB serial device connected. The device shows up as "/dev/ttyUSB5"
I would like to open the serial port and read/write from it. First and foremost... within ...
0
votes
2answers
394 views
java javax.comm
Hi im trying to read com port, so I add library to my java directory like
they wrote here but when Im witing simple code like
import java.util.Enumeration;
import javax.comm.*;
public class ...
0
votes
1answer
166 views
GPS FIX data, reading from com Port
I'm creating a very simple application to read the info from a GPS in java. The information is sent on the COM1 in the NMEA0183 format.
Everything works good except that I can't find my position ...
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
1answer
176 views
javax.comm : Identify which serial port my GPS device is operating
I am writing a small application which uses the javax.comm api to return an enumeration of comms ports, using the following syntax
CommPortIdentifier.getPortIdentifiers();
My question is how ...
0
votes
0answers
231 views
Connect to usb device on remote pc
I want to connect to an USB device (gsm modem) on remote pc from Java. I used Remote USB (application for Windows). But it works fine for at last 40 minutes, then the program lose connection. Server ...
0
votes
2answers
167 views
NoSuchPortException problem for serial port
I tried to connect to SerialPort COM6 using (Windows XP) javax.comm library with this piece of code
portId = CommPortIdentifier.getPortIdentifier(commName);
port = portId.open("", ...
0
votes
0answers
239 views
javax.comm: lockf(): Resource temporarily unavailable
I'm learning to use javax.comm API to manage my cellphone using serial port. After successful executing of the test sample once i cannot run it anymore. The following exception is thrown:
Exception ...
0
votes
1answer
191 views
Why is the status of my computer's COM4 port free while my phone modem is using it?
Here is my code:
import java.io.*;
import java.util.*;
import javax.comm.*;
public class SMS {
public static void main(String[] args) {
Enumeration ...
0
votes
1answer
149 views
Java compiled with gcj using javax.comm api. Possible?
I have a java program that I'm required to compile into a Linux native program using gcj-4.3. This program requires serial port access. The javax.comm api provides serial port access but I'm not ...
0
votes
3answers
333 views
cannot find symbol in net beans
i am having code which is using javax.comm lib file,i am getting error saying cannot find symbol.i want to know where exactly my jar file should be?i using windows xp and net beans ide
0
votes
1answer
988 views
Can't find ports with javax.comm api
I am trying to install the javax.comm api on a machine (I already installed on another machine and it is working fine) but when I run the sample "BlackBox" application I get a message that says "No ...