简体   繁体   中英

Getting unrecognized characters from inputStream

I am reading data from weigh bridge using java comm api . below is the code:

import java.io.*;
import java.util.*;
import javax.comm.*;

public class Parrot implements Runnable, SerialPortEventListener {
    static CommPortIdentifier portId;
    static Enumeration portList;

    InputStream inputStream;
    SerialPort serialPort;
    Thread readThread;

    public static void main(String[] args) {
        portList = CommPortIdentifier.getPortIdentifiers();
        while (portList.hasMoreElements()) {
            portId = (CommPortIdentifier) portList.nextElement();
            if (portId.getPortType() == CommPortIdentifier.PORT_SERIAL) {
                 if (portId.getName().equals("COM1")) {
                    Parrot reader = new Parrot();
                }
            }
        }
    }

    public Parrot() {
        try {
            serialPort = (SerialPort) portId.open("SimpleReadApp", 2000);
        } catch (PortInUseException e) {System.out.println(e);}
        try {
            inputStream = serialPort.getInputStream();
        } catch (IOException e) {System.out.println(e);}
    try {
            serialPort.addEventListener(this);
    } catch (TooManyListenersException e) {System.out.println(e);}
        serialPort.notifyOnDataAvailable(true);
        try {
            serialPort.setSerialPortParams(9600,
                SerialPort.DATABITS_8,
                SerialPort.STOPBITS_1,
                SerialPort.PARITY_NONE);
        } catch (UnsupportedCommOperationException e) {System.out.println(e);}
        readThread = new Thread(this);
        readThread.start();
    }

    public void run() {
        System.out.println("In the run method");
        try {
            Thread.sleep(20000);
        } catch (InterruptedException e) {System.out.println(e);}
    }

    public void serialEvent(SerialPortEvent event) {
        switch(event.getEventType()) {
        case SerialPortEvent.DATA_AVAILABLE:
            byte[] readBuffer = new byte[20];

            try {
                int availableBytes =  inputStream.available();
                System.out.println(availableBytes+" bytes are available to read");
                while (inputStream.available() > 0) {
                    int numBytes = inputStream.read(readBuffer);
                }
                System.out.print(new String(readBuffer));
            } catch (IOException e) {System.out.println(e);}
            break;
        }
    }
}

Below are two screen shots, one from hyper terminal and one from above java program:

Hyper Terminal (with Terminal Font) 在此处输入图片说明

Java Program

在此处输入图片说明

I want to get the same characters as hyper terminal.

It doesn't look like you are correctly reading the stream. You have

        byte[] readBuffer = new byte[20];

        try {
            int availableBytes =  inputStream.available();
            System.out.println(availableBytes+" bytes are available to read");
            while (inputStream.available() > 0) {
                // OVERWRITES THE BYTES FROM THE PREVIOUS READ
                int numBytes = inputStream.read(readBuffer);
            }
            // DOESN'T GIVE BUFFER END POINTS AND DOESN'T GIVE ENCODING
            System.out.print(new String(readBuffer));
        } catch (IOException e) {System.out.println(e);}

Should be

        byte[] readBuffer = new byte[20];
        int bytesRead;
        try {
            int availableBytes =  inputStream.available();
            System.out.println(availableBytes+" bytes are available to read");
            while ((bytesRead = inputStream.read(readBuffer)) != -1) {
                System.out.print(new String(readBuffer,0,bytesRead,Charset.forName(ENCODING));
            }

        } catch (IOException e) {System.out.println(e);}

Where ENCODING is a String that is the proper encoding, eg "UTF-8".

If you want to get a single String that has all of the content:

        byte[] readBuffer = new byte[20];
        int bytesRead;
        StringBuilder sb = new StringBuilder(100);
        try {
            int availableBytes =  inputStream.available();
            System.out.println(availableBytes+" bytes are available to read");
            while ((bytesRead = inputStream.read(readBuffer) != -1) {
                sb.append(new String(readBuffer,0,bytesRead,Charset.forName(ENCODING));
            }
            System.out.println("The content -> " + sb);

        } catch (IOException e) {System.out.println(e);}

EDIT: Answering your comment here: If you want to separate by line, you need to add a new-line to the StringBuilder within the loop. The boxes are likely because you do not have the proper encoding OR the content isn't even valid character data. I don't know how to programmatically determine encoding. It's usually something you know beforehand. The other problem may be the constants you use when setting up the com port stream

        serialPort.setSerialPortParams(9600,
            SerialPort.DATABITS_8,
            SerialPort.STOPBITS_1,
            SerialPort.PARITY_NONE);

Are you sure those are correct?

FYI: A list of encodings .You'll want to use a value from the middle column ("Canonical Name for java.io API and java.lang API").

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM