Displaying temperature and pressure at the same time using java

wildbill:
This:

 Serial.println(sensor2);

Needs to change now to:

 Serial.print(sensor2);

wow thanks!!! It worked!! So what is the difference of putting Serial.println instead of Serial.print? the "ln" kind of finishes the line where the data is displayed, with the next values being displayed in the next paragraph?