Articles
Core Java Refcardz by Cay S. Horstmann
This refcard gives you an overview of key aspects of the Java language and cheat sheets on the core library (formatted output, collections, regular expressions, logging, properties) as well as the most commonly used tools (javac, java, jar).
Features include Java Keywords, Standard Java Packages, Character Escape Sequences, Collections and Common Algorithms, Regular Expressions, JAR Files [...]
JavaFX Important Links
General:
JavaFX Homepage: http://javafx.com/
OpenJFX’s Homepage: https://openjfx.dev.java.net/
The JavaFX Community: http://jfx.wikia.com/wiki/The_JavaFX_Community
Useful Links from PlanetJFX: http://jfx.wikia.com/wiki/Tutorials
Downloads for JavaFX: http://java.sun.com/javafx/downloads/
JavaFX Script Language Support for NetBeans IDE: http://javafx.netbeans.org/
JavaFX Technology Screencasts: http://java.sun.com/javafx/screencasts/index.jsp
SDN JavaFX Site: http://java.sun.com/javafx/index.jsp
JavaFX Script Overview: http://www.sun.com/software/javafx/script/index.jsp
JavaFXPad: http://www.javafxpad.com/
Articles:
Creating Rich Internet Applications With Compiled JavaFX Script Technology: http://java.sun.com/developer/technicalArticles/scripting/javafx/ria_1/
JavaFX FAQ’s: http://java.sun.com/javafx/faqs.jsp
FAQ’s at the Home page: http://javafx.com/
Creating GUIs using JavaFX: http://java.sun.com/javafx/reference/creating_guis/
Using Java Objects within [...]
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 vs.NET – Articles by Bruce Eckel
There are two articles by Bruce Eckel in which he has spoken in brief about C# / .NET and Java. These two are pretty old articles but i feel they are worth reading once, pretty small write ups. Bruce Eckel is the author of famous Thinking in sreis- Thinking in C++ and Thinking in Java.
Article 1- [...]
C Programming VS. Java Programming
I wanted to know how C and Java differ from each other. So i just googled for “C Versus Java” . The first Link itself led me to an interesting Description. I thought of sharing it with my readers. Pretty good Comparision of C and Java. One can read the comparision here.
PS: If anyone has [...]
Cohesion and Coupling: Two OO Design Principles
Cohesion and Coupling deal with the quality of an OO design. Generally, good OO design calls for loose coupling and high cohesion. The goals of OO designs are to make the application
Easy to Create
Easy to Maintain
Easy to Enhance
Coupling:
Coupling is the degree to which one class knows about another class. Let us consider two classes class [...]
CamelCase Notation- Naming Convention for Programming Languages
CamelCase is the practice of writing compound words or phrases in which the words are joined without spaces and are capitalized within the compound like BreakFast, myName etc. CamelCase is so named because each word in the identifier is put together without spaces, but with the first letter of each word captilised, looking like humps [...]
Read Full Post | Make a Comment ( None so far )Top Ten Errors Java Programmers Make
I read an article on “Top Ten Errors Java Programmers Make“. The author has mentioned the errors which even the most programmers often commit or the New to Java programmers may commit in the future. Not only has he listed the errors but also given the possible solution for the same. I found the article [...]
Read Full Post | Make a Comment ( None so far )