Wednesday, September 1, 2010

Eclipse Hints

EclipseSVN- Subclipse- SVNKitJRE for Eclipse (http://wiki.eclipse.org/FAQ_How_do_I_run_Eclipse%3F)eclipse.ini-vm D:/java/jdk16012/jre/bin/javaw.exeANT_HOME error: taskdef class org.apache.catalina.ant.DeployTask...

Friday, August 20, 2010

Java Hints

Software Engineering http://best-practice-software-engineering.ifs.tuwien.ac.at/ Decompiler .java jar -xf comirva-src-0.3.jar Enum Error --> downgrade java 1.4 Project -> Properties -> Java...

Thursday, August 19, 2010

Java Collection

Collection in JavaKey Interfaces of the Collections Framework are:  Collection, List, Set, SortedSet ; Map, SortedMap Ordered:  When a collection is ordered, it means you can iterate through...

Java - Json

http://code.google.com/p/json-simple/System.out.println("=======decode=======");                  String s="[0,{\"1\":{\"2\":{\"3\":{\"4\":[5,{\"6\":7}]}}}}]";  Object obj=JSONValue.parse(s);  JSONArray array=(JSONArray)obj;  System.out.println("======the...

FirefoxDriver Profile in Selenium

1. if the profile isn't already registered with Firefox: File profileDir = new File("path/to/top/level/of/profile"); FirefoxProfile profile = new FirefoxProfile(profileDir); profile.addAdditionalPreferences(extraPrefs); WebDriver driver = new FirefoxDriver(profile); 2. FirefoxDriver...