Pagini recente » Cod sursa (job #1157121) | Cod sursa (job #1380789) | Cod sursa (job #1349252) | Cod sursa (job #1438887) | Cod sursa (job #1349233)
package cdl;
import java.io.*;
import java.util.*;
@SuppressWarnings({ "rawtypes", "unchecked" })
class Converter {
static Hashtable hash = new Hashtable();
static int ok = 0;
public static void main(String[] args) throws IOException {
String dir = System.getProperty("user.dir");
BufferedReader br = new BufferedReader(new FileReader(dir + "//converter.in"));
String s = br.readLine();
String aux;
int index, index2;
Vector key = new Vector();
Vector<Vector> val = new Vector<Vector>();
int nr = 0;
while (s != null) {
String[] t = s.split(",");
for (int i = 0 ; i < t.length ; i++) {
if (ok == 0) {
if (t[i].matches("^.*[^a-zA-Z0-9 ].*$")) {
index = t[i].indexOf("\"");
index2 = t[i].indexOf("\"", index + 1);
aux = t[i].substring(index + 1, index2);
key.add(aux);
aux = t[i].substring(index2 + 1, t[i].length());
aux = aux.trim();
aux = aux.substring(1, aux.length());
aux = aux.trim();
if (aux.contains("\"")) {
index = aux.indexOf("\"");
index2 = aux.indexOf("\"", index + 1);
aux = aux.substring(index + 1, index2);
}
val.add(new Vector());
val.elementAt(nr++).add(aux);
}
if (t[i].contains("}")) {
ok = 1;
nr = 0;
}
}
else {
if (t[i].matches("^.*[^a-zA-Z0-9 ].*$")) {
index = t[i].indexOf("\"");
index2 = t[i].indexOf("\"", index + 1);
aux = t[i].substring(index + 1, index2);
aux = t[i].substring(index2 + 1, t[i].length());
aux = aux.trim();
aux = aux.substring(1, aux.length());
aux = aux.trim();
if (aux.contains("\"")) {
index = aux.indexOf("\"");
index2 = aux.indexOf("\"", index + 1);
aux = aux.substring(index + 1, index2);
}
val.elementAt(nr).add(aux);
if (nr + 1 == key.size())
nr = 0;
else
nr++;
}
}
}
s = br.readLine();
}
br.close();
PrintStream ps = new PrintStream(new FileOutputStream(dir + "//converter.out"));
for (int i = 0 ; i < key.size() ; i++)
ps.print(key.get(i) + ",");
ps.println();
nr = val.get(0).size();
for (int i = 0 ; i < nr ; i++) {
for (int j = 0 ; j < val.size() ; j++)
ps.print(val.get(j).get(i) + ",");
if (i < nr - 1)
ps.println();
}
ps.close();
}
}