Convert Hexadecimal string to Integer
807580Nov 16 2009 — edited Nov 16 2009{String s=Integer.toHexString(c.getRGB() & 0x00ffffff);}
This code gives Hexadecimal String value from RGB value.
How to convert this String into Integer format.( including 0-9 and A-F)
eg. String s="0x6a0050"
The Integer format should be same as this i e 0x6a0050.