This template can be used to display Java code with syntax highlighting and a nice looking frame.

Usage edit

{{java|code=}}

Example edit

{{java|code=
for(int i=0; i<10; i++) {
    System.out.println("Hello!");
}
}}

renders as

Computer code
for(int i=0; i<10; i++) {
    System.out.println("Hello!");
}