Archive for July, 2008
Using Notepad++ to Compile and Run Java Programs
I had been using Notepad- The one that comes with Windows for a long time for writing Java programs and then running it through command line, though i had Notepad++ installed on my system. But then it just flashed to me that “Why can’t i try Notepad++ for compiling and interpreting the Java programs“. I [...]
Read Full Post | Make a Comment ( 27 so far )Java 6 Update 7 available- Includes Java VisualVM and VisualVM 1.0
Sun is announcing Java VisualVM, a new GUI-based tool for troubleshooting Java applications. Available as part of JavaSE 6 Update 7 (available today) VisualVM incorporates various technologies, including: jvmstat, Java Management Extensions (JMX), and the NetBeans profiler, in order to provide a unified easy-to-use visual diagnostic tool for both development and production environments.
For more information [...]
First Attempt @ Servlets, JSP and Cookies
I have been doing Servlets and JSPs from quite some days and yeah they have been lots of interesting stuff in it, And this is my first attempt at Web Technologies. I would recommend beginners to use Head First Servlets and JSP book. It’s a superb book to read, one can enjoy reading and the [...]
Read Full Post | Make a Comment ( 2 so far )Java and Python Compared
I have been posting lots of “Compared Stuff”. Its because being a Java programmer i would love to read why the new programming language i am interested in learning or have already learn’t is different from Java. And as i was going through Python for Java Programmers (Link) I found an interesting comparison between Java [...]
Read Full Post | Make a Comment ( 2 so far )Passing Variables into Methods- Java Passing Mechanism Explained
Every Programming Language has its own way of passing the variables into methods. There are basically two ways of passing variables- Pass by Reference and Pass By Value. The former deals with the passing of reference or pointer to particular variable and the latter involves passing a copy of the variable to the method. C [...]
Read Full Post | Make a Comment ( 7 so far )Interested in Open Source Java Projects?
As i was going through Amit Kumar Saha’s blog at Blogspot, I found a post on “Participating in Open source Java Projects“. Actually sometime back i had asked Ashwin on what i can probably do using Java and he had mentioned trying out java.net . But this post has whole lot of resources for contributing to java Projects. A [...]
Read Full Post | Make a Comment ( None so far )