up vote 2 down vote favorite
share [g+] share [fb]

I wrote a Java program to download HTML page. But CPU usage is near to 100%, while network utilization is lower than 3%. It seems like that CPU became my bottleneck. So is there any suggestions about cutting my CPU usage.

link|improve this question

1  
You're going to have to post you're source code, otherwise we can't help you other than telling you to use a profiler... – Yuval Adam May 7 '09 at 9:24
feedback

8 Answers

up vote 5 down vote accepted

use a profiler (I like VisualVM), identify the bottleneck and fix it!

link|improve this answer
feedback

If you have a continuous while loop, give your program some sleep time between iterations. Downloading the web pages alone should not cause that much resource utilization though, you may want to look into a profiler to find out whats bottlenecking you. Perhaps posting the code here would let us help you a bit more.

link|improve this answer
feedback

If your CPU usage is near to 100% for a long period of time, then most probably you have an error in your code (infinite loop or something). Try to profile your application to see what is happening. Start from printing the current time from various points at your code. If you still can't find that out, a profiler will be needed.

link|improve this answer
If the loop is infinite, grabbing a couple stack traces will find it. If the loop is not infinite, but merely long, the same method works. – Mike Dunlavey Jul 7 '09 at 21:14
feedback

One very simple thing you can do to identify the problem is just grab a few stack traces. ctrl-\/ctrl-break/jstack/jconsole/visualvm. If the program is catastrophically spending a lot of its time where the performance problem is (reasonably likely), then you should easily see the problem.

link|improve this answer
++ beat me to it. That's my favorite method. – Mike Dunlavey Jul 7 '09 at 21:10
feedback

Maybe you are polling for data too fast...

I would try to change the code to event-driven notification.

Regards.

link|improve this answer
feedback

When you read, are you reading a char/byte at a time? That will load the OS quite a bit.

Use a BufferedReader, and/or try to read using either read(char[]...) or readLine() depending what you are reading into.

link|improve this answer
feedback

Are you, by any chance, parsing the HTML using the built in Java XML DOM stuff? From past experience, it can result in some pretty hefty CPU usage (and it's the slowest implementation I've ever seen, honestly). If so, you might want to consider a 3rd party library for XML parsing (jdom, for instance).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.