This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
I have written an application complete with Desktop, split panes, etc. This application runs quite slow. Are there any good Java optimizer out there, preferrably open source?
Joe Gilvary
Ranch Hand
Joined: May 11, 2001
Posts: 152
posted
0
Both JProbe and OptimizeIt are very good. Neither is open source. Neither is inexpensive. If you find such an open source project, please pass it on. I turned to books. I like Java Performance Tuning by Jack Shirazi Java Platform Performance : Strategies and Tactics by Steve Wilson, et al and Java Performance and Scalability by Dov Bulka Each has a somewhat different focus and approach. Each benefitted me and my code. HTH, Joe
Gerd Rosarius
Greenhorn
Joined: Feb 13, 2002
Posts: 24
posted
0
Hey, less expensive but less effectiv: Run javac with it's optimization parameter Example: javac -O myClass.java Greetings H.-Gerd [ February 15, 2002: Message edited by: Gerd Rosarius ]
<a href="http://www.brainsandbytes.de" target="_blank" rel="nofollow">Brains and Bytes</a> − eTechnology- and Marketing-Services
Hi You may also want to try the arguments like -Xprof , -Xrunhprof .
regards ravee.
Peter Haggar
author
Ranch Hand
Joined: Jan 03, 2001
Posts: 106
posted
0
Originally posted by Gerd Rosarius: Hey, less expensive but less effectiv: Run javac with it's optimization parameter Example: javac -O myClass.java Greetings H.-Gerd [ February 15, 2002: Message edited by: Gerd Rosarius ]
-O won't help. It is a no-op on all javac compilers I have used. Peter Haggar