Results 1 to 3 of 3
Thread: Adding color to a java applet?
- 11-02-2008, 03:00 PM #1
Member
- Join Date
- Oct 2008
- Posts
- 39
- Rep Power
- 0
Adding color to a java applet?
I'am trying to add color to the following, i'am unable to do this.
This is the first java applet i have written, any advise or amendments?
public class greetingApp extends JApplet {
public static void main(String args[]) {
System.out.println("Hi Peter" foreground.color.blue);
System.out.println("from Stuart to Peter");
System.out.println("at University of Glamorgan");
System.out.println("Pontypridd CF37 1DL");
}
}
-
That's not applet code as applets in general don't have a main method. Please do yourself a big favor and read the Applet tutorial on the Sun site to see how to do this right.
Lesson: Applets (The Java™ Tutorials > Deployment)
After going through the tutorials, give it a try again, and then please feel free to come on back if you have any further questions.
Good luck.
- 11-02-2008, 04:14 PM #3
To change to color of displayed text you need to be using a component that supports changing the color. Most simple components only have one color that they use. See the Component class for various methods to set colors.
More complicated classes allow you to have different colors for different pieces of text.
You'll find these as you progress in learning java. For now, with
System.out.println(... you get only blank.
Similar Threads
-
Java and Eclipse: Adding a build or revision number to application using SVNAnt
By sal_manilla in forum EclipseReplies: 4Last Post: 10-25-2010, 05:59 AM -
Beginner Java graphics - filling concentric circles with color
By GenkiSudo in forum New To JavaReplies: 4Last Post: 09-13-2008, 11:07 AM -
What're the differences between JSP, Java Script, and Java Applet?
By meili100 in forum New To JavaReplies: 3Last Post: 07-23-2008, 08:07 AM -
adding the Java Console to a ContentPane
By naipulb in forum New To JavaReplies: 1Last Post: 06-10-2008, 08:51 AM -
Adding listener to non-Java object?
By cruxblack in forum Advanced JavaReplies: 5Last Post: 07-30-2007, 02:19 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks