Conference | Average acceptance rate |
---|---|
SIGMOD | 16% |
EDBT | 16% |
VLDB | 16% |
ICDE | 17% |
PODS | 21% |
CIKM | 22% |
ER | 25% |
ICDT | 27% |
Wednesday, April 13, 2011
Friday, April 8, 2011
Wednesday, April 6, 2011
Database conferences
Conference | Conf. Dates | Abstract Deadline | Paper Deadline | Notification | Location | |
SIGMOD 2012 | 20/05-25/05 | 25/10/2011 | 01/11/2011 | 14/02/2012 | Scottsdale, Arizona, USA | |
VLDB 2012 | 27/08-31/08 | 1st day per month | 1st day per month | May 19, 2012 | Istanbul, Turkey | |
ICDE 2012@Arlington, US | April 01-05, 2012 | July 12, 2011 | July 19, 2012 | Sep 27, 2012 | ICDE 2012 | |
EDBT 2012@Berlin | 21/03-25/03 | 29/09/2011 | Oct 6 2011 | - | EDBT 2012 | |
MDM 2012@London | 06/06-09/09 | 29/11/2011 | - | - | London | |
SSTD 2011@Minneapolis | Aug 24-26, 2011 | 18/02/2011 | 25/02/2011 | Apr 29, 2011 | - | |
DASFAA 2012 | 02-05/04/2012 | 30/09/2011 | Pusan / South Korea | |||
DEXA 2011 @ Toulouse, France | 29/08-02/09/2011 | - | - | - | DEXA 2011 | |
SSDBM @ Portland, Oregon | Jul 20-22, 2011 | - | January | Mar 28, 2011 | ||
ICDM @ Vancouver, Canada | Dec 11-14, 2011 | - | Jun 17, 2011 | Sep 16, 2011 | - |
Saturday, April 2, 2011
Convert ArrayList to Array in Java. ArrayList to Array. Java Collection
A lot of time I have to convert ArrayList to Arrays in my Java program. Although this is a simple task, many people don’t know how to do this and end up in iterating the java.util.ArrayList to convert it into arrays. I saw such code in one of my friends work and I thought to share this so that people don’t end up writing easy thing in complicated way.
ArrayList class has a method called toArray() that we are using in our example to convert it into Arrays.
Following is simple code snippet that converts an array list of countries into string array.
Listlist = new ArrayList ;
list.add("India");
list.add("Switzerland");
list.add("Italy");
list.add("France");
String [] countries = list.toArray(new String[0]);
So to convert ArrayList of any class into array use following code. Convert T into the class whose arrays you want to create.
Listlist = new ArrayList ;
T [] countries = list.toArray(new T[list.size()]);
Convert Array to ArrayList
We just saw how to convert ArrayList in Java to Arrays. But how to do the reverse? Well, following is the small code snippet that converts an Array to ArrayList:
String[] countries = {"India", "Switzerland", "Italy", "France"};
List list = new ArrayList(Arrays.asList(countries));
System.out.println("ArrayList of Countries:" + list);