|
|
![]() |
| Thread Tools | Search this Thread |
#1
| |||
| |||
Change Color Schemes in Java hi Can anyone solve a small doubt of mine in java. I am wrting a program in java for changing color schemes in this programming language so please can anyone help me in this |
#2
| |||
| |||
Re: Change Color Schemes in Java import java.util.Map; import java.util.TreeSet; public class GetEnv { /** * let's test generics * @param args the command line arguments */ public static void main(String[] args) { // get a map of environment variables Map<String, String> env = System.getenv(); // build a sorted set out of the keys and iterate for(String k: new TreeSet<String>(env.keySet())) { System.out.printf("%s = %s\n", k, env.get(k)); } } } |
![]() |
|
Tags: change, color, java, programming language, schemes |
Thread Tools | Search this Thread |
|
![]() | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Is there any option to change the color of friend/foe to help color blinds play Birds of Steel? | I M Perfect | Video Games | 3 | 18-03-2012 07:33 PM |
Color Schemes For Outlook | Doloreta | Windows Software | 3 | 26-11-2010 05:47 AM |
Changing the Color Theme in Java | NIcaBoy | Software Development | 4 | 14-02-2010 03:23 AM |
JAVA Help - Background change by color matching | Daren | Software Development | 4 | 12-05-2009 08:41 AM |
Java Color Choosers | Ebadaah | Software Development | 2 | 11-05-2009 09:11 AM |