how to read and write from the serial port with java - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T09:31:54Z http://stackoverflow.com/feeds/question/589334 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/589334/how-to-read-and-write-from-the-serial-port-with-java 0 how to read and write from the serial port with java satish 2009-02-26T06:16:16Z 2009-02-26T08:04:42Z <p>I want write data to serial port then I'll get reply again I've to write data to the serialport. But the problem is, when I write at first time I'll get reply also but I couldn't write at second.</p> <p>my code</p> <pre><code>package writeToPort; import java.awt.Toolkit; import java.io.*; import java.util.*; import javax.comm.*; import javax.swing.JOptionPane; import constants.Constants; package writeToPort; import java.awt.Toolkit; import java.io.*; import java.util.*; import javax.comm.*; import javax.swing.JOptionPane; import constants.Constants; public class Flashwriter implements SerialPortEventListener { Enumeration portList; CommPortIdentifier portId; String messageString = "\r\nFLASH\r\n"; SerialPort serialPort; OutputStream outputStream,outputStream2; InputStream inputStream; Thread readThread; String one, two; String test = "ONLINE"; String[] dispArray = new String[1]; int i = 0; byte[] readBufferArray; int numBytes; String response; FileOutputStream out; final int FLASH = 1, FILENAME = 2; int number; File winFile; public static void main(String[] args) throws IOException { Flashwriter sm = new Flashwriter(); sm.FlashWriteMethod(); } public void FlashWriteMethod() throws IOException { portList = CommPortIdentifier.getPortIdentifiers(); winFile = new File("D:\\testing\\out.FLS"); while (portList.hasMoreElements()) { portId = (CommPortIdentifier) portList.nextElement(); if (portId.getPortType() == CommPortIdentifier.PORT_SERIAL) { if (portId.getName().equals("COM2")) { // if (portId.getName().equals("/dev/term/a")) { try { serialPort = (SerialPort) portId.open("SimpleWriteApp", 1000); } catch (PortInUseException e) { } try { inputStream = serialPort.getInputStream(); System.out.println(" Input Stream... " + inputStream); } catch (IOException e) { System.out.println("IO Exception"); } try { serialPort.addEventListener(this); } catch (TooManyListenersException e) { System.out.println("Tooo many Listener exception"); } serialPort.notifyOnDataAvailable(true); try { outputStream = serialPort.getOutputStream(); inputStream = serialPort.getInputStream(); } catch (IOException e) { } try { serialPort.setSerialPortParams(9600, SerialPort.DATABITS_8, SerialPort.STOPBITS_1, SerialPort.PARITY_NONE); serialPort .setFlowControlMode(SerialPort.FLOWCONTROL_NONE); // serialPort.disableReceiveTimeout(); // outputStream.write(messageString.getBytes()); // sendRequest("/r/n26-02-08.FLS/r/n"); number = FLASH; sendRequest(number); } catch (UnsupportedCommOperationException e) { } } } } } public void serialEvent(SerialPortEvent event) { SerialPort port = (SerialPort) event.getSource(); switch (event.getEventType()) { case SerialPortEvent.DATA_AVAILABLE: try { if (inputStream.available() &gt; 0) { numBytes = inputStream.available(); readBufferArray = new byte[numBytes]; // int readtheBytes = (int) inputStream.skip(2); int readBytes = inputStream.read(readBufferArray); one = new String(readBufferArray); System.out.println("readBytes " + one); if (one.indexOf("FLASH_") &gt; -1 &amp; !(one.indexOf("FLASH_F") &gt; -1)) { System.out.println("got message"); response = "FLASH_OK"; // JOptionPane.showMessageDialog(null, // "ONLINE", // "Online Dump", // JOptionPane.INFORMATION_MESSAGE); // Toolkit.getDefaultToolkit().beep(); // outputStream.write("\r\nONLINEr\n".getBytes()); // outputStream.flush(); // outputStream.write("/r/n26-02-08.FLS/r/n".getBytes()); number = FILENAME; sendRequest(number); } out = new FileOutputStream(winFile, true); out.write(readBufferArray); out.close(); } } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } readBufferArray = null; // break; } // try { // int c; // while((c = inputStream.read()) != -1) { // out.write(c); // } // } catch (IOException e) { // // TODO Auto-generated catch block // e.printStackTrace(); // } // // readBufferArray=null; // break; // } // if (inputStream != null) // try { // inputStream.close(); // if (port != null) port.close(); // } catch (IOException e) { // // TODO Auto-generated catch block // e.printStackTrace(); // } // // } public void dispPacket(String packet) { if (response == "FLASH_OK") { System.out.println("disppacket " + packet); } else { System.out.println("No resust"); } } public void sendRequest(int num) { switch (num) { case FLASH: try { outputStream.write(messageString.getBytes()); System.out.println("Flash switch"); outputStream.flush(); } catch (IOException e) { e.printStackTrace(); } break; case FILENAME: try { outputStream.write("\r\n26-02-08.FLS\r\n".getBytes()); System.out.println("File name"); outputStream.flush(); } catch (IOException e) { e.printStackTrace(); } break; } } } </code></pre> <p>thanks for the reply</p> http://stackoverflow.com/questions/589334/how-to-read-and-write-from-the-serial-port-with-java/589593#589593 1 Answer by Software Monkey for how to read and write from the serial port with java Software Monkey 2009-02-26T08:04:42Z 2009-02-26T08:04:42Z <p>Search stackoverflow.com with <a href="http://stackoverflow.com/search?q=java%2Bserial%2Bport">these parameters</a>, and you'll see lots of similar questions.</p> <p>Otherwise, you'll need to make your question a lot more specific that it is.</p>