Java Programming

TwitterFacebook
Get flash to fully experience Pearltrees
http://doc.java.sun.com/DocWeb/api/java.util.Scanner A simple text scanner which can parse primitive types and strings using regular expressions. A Scanner breaks its input into tokens using a delimiter pattern, which by default matches whitespace. The resulting tokens may then be converted into values of different types using the various next methods. For example, this code allows a user to read a number from System.in : Scanner sc = new Scanner(System.in); int i = sc.nextInt(); As another example, this code allows long types to be assigned from entries in a file myNumbers :

java.util.Scanner

Java Input Using Java Scanner

Introduction Note: If you're looking for Java Scanner help, click here . The page contains some common questions about them and a question form where you can ask your own questions about Scanners in Java. http://www.java-made-easy.com/java-scanner.html

REST-Web-Services

http://www.xfront.com/REST-Web-Services.html I will first provide a brief introduction to REST and then describe how to build Web services in the REST style. What is REST? REST is a term coined by Roy Fielding in his Ph.D. dissertation [1] to describe an architecture style of networked systems. REST is an acronym standing for Representational State Transfer. Why is it called Representational State Transfer? The Web is comprised of resources.
Java Restful Services

http://www.cs.ubc.ca/~murphyk/Thesis/thesis.html "Dynamic Bayesian Networks: Representation, Inference and Learning" UC Berkeley, Computer Science Division, July 2002. "Modelling sequential data is important in many areas of science and engineering. Hidden Markov models (HMMs) and Kalman filter models (KFMs) are popular for this because they are simple and flexible. For example, HMMs have been used for speech recognition and bio-sequence analysis, and KFMs have been used for problems ranging from tracking planes and missiles to predicting the economy.

Kevin Murphy's PhD Thesis

http://download.oracle.com/javase/tutorial/ The Java Tutorials are practical guides for programmers who want to use the Java programming language to create applications. They include hundreds of complete, working examples, and dozens of lessons. Groups of related lessons are organized into "trails". The Java Tutorials primarily describe features in Java SE 7.

The Java™ Tutorials

Java

Java BugHunt #1: Output Difficulty: Easy Time to solve: ~1 min Video this is covered in: 1 public class Jtutorial1 { public static void main(String args[]){ system.out.println("Hello World"); }//end main }//end class Error Code: Exception in thread “main” java.lang.RuntimeException: Uncompilable source code – Erroneous sym type: system.out.println at Jtutorial1.main(Jtutorial1.java:6) Java BugHunt #2 Difficulty: Easy Time to solve: <5 min Video this is covered in: 2 http://beginnersjava.com/?cat=72

Beginners Java » BugHunt

New to Java Programming Center

http://www.oracle.com/technetwork/topics/newtojava/overview/index.html Java Basics offers a quick overview and the steps to create a 'Hello, World' program. Get Started provides the resources needed to develop applications with Java technologies Training includes courses, certifications and package information Connect with the millions of existing Java professionals via conferences, blogs and more. Young Developers covers online resources to learn Java application development at any age, as well as a tutorial about Minecraft mods and Java
http://en.wikibooks.org/wiki/Java_Programming/Collection_Classes Collections are a group of objects bound together by a common characteristic. Java has various built-in classes to support the collection of objects, either of the same type or general. The most basic construct to work with is the array of which you will come to know of in a section later in this chapter.

Java Programming/Collection Classes