- O'reilly - java programming in linux
- Apress - java collection 2001
- Addison wesley - effective java programming
- Addions wesley - java development on PDAs
- Addison wesley - java platfrom enterprise edition
- Addison wesley - java micro games
- Addison wesley - XML and java
- Addison wesley - java programming with IBM
- Addison wesley - inside java 2 platfrom security
- Addison wesley - java data and object
- Addison wesley - java desingn patterns
- Addison wesley - java look and feel design guide
- Addison wesley - java perfomance and scalability
- Addison wesley - programming for java virtual machine
- Algorithm in java 3rd edition 2002 part 1
- Beyond java (2005)
- Data structure and algorithm in java
- Generic in java programming
- Java quick reference
- Java beginners guide
- Data structure and algorithm with object oriented
- java - how to programming
public class Java {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
java android
package com.example.helloworld;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class HelloWorld extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView tv = new TextView(this);
tv.setText("Hello World");
setContentView(tv);
}
}