Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Debugging

Status
Not open for further replies.

DigitalOx

Programmer
Sep 29, 1998
41
US
Is there a way to step through my code with the JDK 2? Or any free tools that will (for Windows)?<br>
Thanks,<br>
DigitalOx<br>

 
The sun's java workshop (not studio, it is for beginners) is a free tool (IDE) to develop java applets and applications. You can download from the java.sun.com, about 9MB. It has a usable debugger and profiler too. It was written in java, thus you need a strong hardware (Min. P166, 64MB RAM).<br>
You also use the debugger in the JDK, but it is very stupid.<br>
<br>
Good luck,<br>
Otto.
 
Thanks, I will try it. I loaded it up MS J++ 1.1 in desperation because I knew it had a debugger though I had a strange problem. There in a declaration of BufferedReader (to read in an input file) in my class. The syntax and all is is correct, with no errors from JDK 2, bit MS keeps giving me class not found errors. Therefore I can use it's (MS J++ 1.1) debugger. Is this class JDK 2 only? Anymore suggestions greatly appreciated meantime...<br>
Thanks Otto,<br>
DigitalOx
 
The jdk has the BufferedReader class since jdk1.1, thus you may have other problem. Are you sure to import java.io.* or java.io.BufferedReader? The CLASSPATH and other environment variables are set correctly for M$ J++ (or the J++ has own class library, maybe, I do not not, because I have never seen M$ J++ - luckily - :)).<br>
Bye, Otto.<br>

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top