Avatar of Steve Jennings
Steve Jennings
 asked on

Howto remove CRLF from System.out.println

My output looks like this:

[steve@centos01 src]$ java -cp . getCount
1374
[steve@centos01 src]$

The java code is simply:

rs = st.executeQuery("select count(*) from calls");
        while(rs.next()) {
              String total= rs.getString(1);
              System.out.println(total);
        }

I want the output to look like this:

[steve@centos01 src]$ java -cp . getCount
1374[steve@centos01 src]$

Then the "cacti" graphing process will be able to read the value and process it.

I've tried trim() and replace() and length(-2).

What am I missing?

Thanks
Java

Avatar of undefined
Last Comment
CEHJ

8/22/2022 - Mon
ASKER CERTIFIED SOLUTION
CEHJ

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Steve Jennings

ASKER
Holy cow! An easy 250, eh CEHJ?

Thanks
CEHJ

:-)
Experts Exchange has (a) saved my job multiple times, (b) saved me hours, days, and even weeks of work, and often (c) makes me look like a superhero! This place is MAGIC!
Walt Forbes