Posts

Showing posts from September, 2013
Image
java magazine   Get Java Magazine! Java Magazine  is one of Oracle’s newest and most significant investments in the continuing health and growth of the Java technology ecosystem. This bimonthly, digital-only publication is an essential source of knowledge about Java technology, the Java programming language, and Java-based applications for people who rely on them in their professional careers, or who aspire to. Although there are other publications that bring you news from the world of Java, there are no other examples that combine the voice of the Java “steward” (Oracle) with the voices of the rest of the community (developers, ISVs, device manufacturers, users, and students) in an innovative, all-digital package.     Get Java Magazine!

Eclipse and Java for Total Beginners Tutorial.

Image
 Eclipse and Java for Total Beginners Tutorial Companion Document. Java is platform independent language and no of ID's are available for java development like Eclipse and Netbeans  for every beginners wants some basic idea's for code development . Following document helps to you for prepare basic idea's of code making and also you can learn here various java related  definition .just click and download this pdf file. Download pdf for java Beginners [Document]

New Features Added by Java

Image
Java Features  There are a number of features in Java that have no equivalent in C++. Perhaps the three most important are multithreading, packages, and interfaces, but there are several others that enrich the Java programming environment as well. Multithreading allows two or more pieces of the same program to  execute concurrently. Further, this approach to concurrence is supported at the  language level. There is no parallel for this in C++. If you need to multithread a C++  program, you will need to do so manually, using operating system functions. While  both methods allow for concurrent execution of two or more threads, Java's approach  is cleaner and easier to use. There is no feature in C++ that directly corresponds to a Java package. The closest  similarity is a set of library functions that use a common header file. However,  constructing and using a library in C++ is completely different from constructing and  using a package...

How to Send SMS using Java Program

How to Send SMS using Java Program [full code sample included] You can use this free Java sample program to send SMS from your PC using GSM modem connected to your computer to your COM port. You also need to download and install the  Java comm api from Sun . This program needs the following java files to function. 1. SerialConnection.java (This file is used to connect to your COM port from your java program) 2. SerialConnectionException.java (This file is for handling serial connection exceptions in your Java program) 3. SerialParameters.java (This program is used to set your COM port properties for connecting to your com port from your java program) 4. Sender.java (This is the program that implements runnable and sends SMS using the serial connection) 5. SMSClient.java (This java class is the main class that can be instantiated in your own java program and called to send SMS. This program in turn will use all the above four files internally to send out your SMS). ...

Simple Java in NetBeans

Image

Beginning Programming with Java

Image
                                                          One of the most popular beginning programming book Java is a popular language for beginning programmers, and earlier editions of this fun and friendly guide have helped thousands get started. Now fully revised to cover recent updates for Java 7.0,  Beginning Programming with Java For Dummies, 3rd Edition  is certain to put more first-time programmers and Java beginners on the road to Java mastery. Explores what goes into creating a program, putting the pieces together, dealing with standard programming challenges, debugging, and making the program work Offers new options for tools and techniques used in Java development Provides valuable information and examples for the would-be programmer with no Java experience All examples are updated to reflec...