Posts

Showing posts from 2013

REFERENCES & RESOURCES FOR JAVA LEARNING

Image
REFERENCES & RESOURCES FOR JAVA LEARNING   XML and Related Technologies Specifications @  www.w3c.org . W3Schools' XML Tutorial @  http://www.w3schools.com . Rose India's Programming Tutorial @  http://www.roseindia.net .

Java Programming Java & XML

Image
Java Programming Java & XML  XML (eXtensible Markup Language), like HTML, is a  markup language  for marking up the structure of a text document. It is a subset of Standard General Markup Language (SGML). XML is not a programming language like Java or C#. It is developed and maintained by World-Wide Web Consortium (W3C) @  www.w3c.org . (W3C also maintains specifications for HTTP, HTML, XHTML, CSS, among others.) XML is a family of technologies, which includes: XML: the markup language itself. DTD (Document Type Definition) and XML Schema: define the structure of an XML document, XSL (XML Style sheet Language), XSLT (XSL Transformation), XSL-FO (XSL Formatting Objects): for presentation. XPath, XLink, XPointer, XQuery: for locating, linking and query document. DOM (Document Object Model), SAX (Simple API for XML): XML parser. XQL (XML Query Language), XSQL: for querying databases. and more... I assume that you have some basic understanding of ...
Java Code To Play MP3 File in pc.. _______________________________________________________________________________ System  Requirement : > Install Java Media Framework.(JVM) For this you'll need to install  Java Media Framework (JMF)  in your PC. This is much easier than coding, it's just like you install other softwares. Clicking on Agree, Next, Finish will do the thing. You will also not have any head ache with the  classpath settings  because it is automatically done. If you know how to install software, then you probably will install the JMF. The download link is provided above, all you need to do is to accept the  license agreement  first and then if choose your Operating System and then click on the file. If you use windows, i recommend to download  Windows Performance Pack. Java code for Audio player... import javax.media.*; import java.net.*; import java.io.*; import java.util.*; class AudioPlay { public static void main...
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...