68 lines
2.4 KiB
Java
68 lines
2.4 KiB
Java
import com.ablia.anag.Clifor;
|
|
import com.ablia.anag.CliforCR;
|
|
import com.ablia.db.ApplParm;
|
|
import com.ablia.db.ApplParmFull;
|
|
import com.ablia.util.DbConsole;
|
|
import java.sql.Time;
|
|
import java.util.StringTokenizer;
|
|
|
|
public class ExportCliforCsv extends DbConsole {
|
|
public static void main(String[] args) {
|
|
ExportCliforCsv bean = new ExportCliforCsv();
|
|
bean.doImport();
|
|
System.exit(0);
|
|
}
|
|
|
|
public void doImport() {
|
|
String db = "guidoreni14";
|
|
int i = 0;
|
|
int se1 = 10;
|
|
int se2 = 100;
|
|
String hostname = "localhost";
|
|
String temp = getCi().readLine("Hostname (" + hostname + "):");
|
|
if (!temp.isEmpty())
|
|
hostname = temp;
|
|
temp = getCi().readLine("Database name (" + db + "):");
|
|
if (!temp.isEmpty())
|
|
db = temp;
|
|
System.out.println("Db: " + db);
|
|
ApplParmFull apTarget = new ApplParmFull(new ApplParm(3, "//" + hostname + "/" + db, "root", "root", 1, 10, 300));
|
|
apTarget.setDebug(false);
|
|
Clifor clifor = new Clifor(apTarget);
|
|
CliforCR CR = new CliforCR(apTarget);
|
|
CR.setFlgTipo("C");
|
|
System.out.println("creo csv cliente");
|
|
clifor.creaFileCvs(CR);
|
|
System.out.println("Creato file " + CR.getFileName());
|
|
System.out.println("creo csv fornitore");
|
|
CR.setFlgTipo("F");
|
|
clifor.creaFileCvs(CR);
|
|
System.out.println("Creato file " + CR.getFileName());
|
|
System.out.println("fine");
|
|
System.exit(0);
|
|
}
|
|
|
|
protected Time getTimeFromString(String theTime) {
|
|
try {
|
|
if (theTime.matches("[0-9][0-9][0-9][0-9]"))
|
|
theTime = String.valueOf(theTime.substring(0, 2)) + ":" + theTime.substring(2, 4);
|
|
if (theTime.matches("[0-9]{1,2}+:[0-9]{1,2}+")) {
|
|
StringTokenizer st = new StringTokenizer(theTime, ":");
|
|
int hour = Integer.parseInt(st.nextToken());
|
|
int min = Integer.parseInt(st.nextToken());
|
|
int sec = st.hasMoreElements() ? Integer.parseInt(st.nextToken()) : 0;
|
|
return new Time((long)((hour - 1) * 3600000 + min * 60000 + sec * 1000));
|
|
}
|
|
if (theTime.matches("[0-9]{1,2}+:[0-9]{1,2}+:[0-9]{1,2}+")) {
|
|
StringTokenizer st = new StringTokenizer(theTime, ":");
|
|
int hour = Integer.parseInt(st.nextToken());
|
|
int min = Integer.parseInt(st.nextToken());
|
|
int sec = st.hasMoreElements() ? Integer.parseInt(st.nextToken()) : 0;
|
|
return new Time((long)((hour - 1) * 3600000 + min * 60000 + sec * 1000));
|
|
}
|
|
return null;
|
|
} catch (Exception e) {
|
|
return null;
|
|
}
|
|
}
|
|
}
|