Results 1 to 2 of 2

Thread: Change Color Schemes in Java

  1. #1
    Join Date
    Nov 2008
    Posts
    69

    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. #2
    Join Date
    May 2008
    Posts
    2,297

    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));
    }
    }
    }

Similar Threads

  1. Replies: 3
    Last Post: 18-03-2012, 07:33 PM
  2. Color Schemes For Outlook
    By Doloreta in forum Windows Software
    Replies: 3
    Last Post: 26-11-2010, 05:47 AM
  3. Changing the Color Theme in Java
    By NIcaBoy in forum Software Development
    Replies: 4
    Last Post: 14-02-2010, 03:23 AM
  4. JAVA Help - Background change by color matching
    By Daren in forum Software Development
    Replies: 4
    Last Post: 12-05-2009, 08:41 AM
  5. Java Color Choosers
    By Ebadaah in forum Software Development
    Replies: 2
    Last Post: 11-05-2009, 09:11 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,093,122.89082 seconds with 16 queries