Hello!
I am working on an application that is used to read serial port data and parse it.
The following problem arise:
When i print the data using
System.out.println("10.05.1108:12:19 1 11 00:00:02080012345 2 ");
the program outputs the data in the correct way.
10.05.1108:12:19 1 11 00:00:02080012345 2
but when i add the data to the GUI
gui.addText("10.05.1108:12:19 1 11 00:00:02080012345 2 ");
the program outputs:
:10:.05:.110:8:::1:2::1:9 1 11 00:0:0::02:0:8:0:0:1:2:345 : : : : : : : : : 2 : : : : : : : : :
Any idea on solving this problem?
Thanks in advance!
Best Regards,
Dean