Hello all,
I am a complete begginner to java and don't know the first thing about it ...
If I wanted to write Hello Juice Bomber in a java program how would i do it/what's the code???
Thanks![]()
Hello all,
I am a complete begginner to java and don't know the first thing about it ...
If I wanted to write Hello Juice Bomber in a java program how would i do it/what's the code???
Thanks![]()
What sort of a Java program?
To write it to the console,Or with a Swing GUI:Code:class Hello { public static void main(String[] argv) { System.out.println("Hello Juice Bomber"); } }Or as an applet:Code:import java.swing.JFrame; import java.swing.JLabel; import java.swing.JPanel; class Hello extends JFrame { public Hello() { super("Hello"); setSize(150, 100); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); ((JPanel)getContentPane()).add(new JLabel("Hello Juice Bomber")); setVisible(true); } public static void main(String[] argv) { new Hello(); } }Code:import java.swing.JApplet; import java.swing.JLabel; import java.swing.JPanel; class Hello extends JApplet { public void start() { ((JPanel)getContentPane()).add(new JLabel("Hello Juice Bomber")); } }
Last edited by Twey; 02-25-2007 at 04:09 PM.
Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!
class Simple
{
public static void method()
{
System.out.println("Hello Juice Bomber");
}
public static void main(String Str[])
{
Simple.method();
}
}
Um... that's nice?![]()
Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!
Bookmarks