Found a really good printf cheat sheet:printf cheat sheet
Here is a really simple example of how to read a text file using JDK7. The main new feature you will see is the try with resources block on line 10. The program just numbers the lines of a text files up to 9999 lines long. 1 import java.io.BufferedReader;
2 import java.io.FileNotFoundException;
3 import java.io.FileReader;
4 import java.io.IOException;
5
6 public class LineNumber {
7 public static void main(String[] args){
8 String fileName = args[0];
9
10 try(BufferedReader reader = new BufferedReader(new FileReader(fileName))){
11 String line = ""; int c = 1;
12 while((line = reader.readLine()) != null){
13 System.out.printf("%4d %s\n", c, line);
14 c++;
15 }
16
17 } catch (FileNotFoundException e) {
18 e.printStackTrace();
19 } catch (IOException e){
20 e.printStackTrace();
21 }
22 }
23 }
Cult of Mac has detailed the steps to create an install DVD once you have you downloaded OS X Lion.

It is true. I am indeed on Google Plus thanks to World of Warcraft friend Yvonne.
Want to see the JDK 7 launch event? It is going on live right now. More information can be found here. I am not sure if there are still login slots available, but you can always check it out if interested.
Problem: You have just turned on proxy support for Mac OS X. However, even though your proxy settings are correct, Safari and Chrome cannot connect to any web site. In addition, no proxy settings work, Auto Proxy Discovery, Automatic Proxy Configuration, and Web Proxy (HTTP). The settings are correct, but the browser cannot connect.
Is your brand new Nook Touch lasting 4 days instead of 2 months? The Nook Touch can't hold a charge? This is the problem I ran into days after getting this wonderful new e-reader.