-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.java
279 lines (260 loc) · 12.3 KB
/
Main.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
// Main.java
// главный класс
// Дорогов Алексей, 4081/11
package dorogoff;
import java.io.BufferedReader;
import java.io.DataInput;
import java.io.DataInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.sql.Connection;
import java.sql.Driver;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.Statement;
import org.w3c.dom.Document;
import org.w3c.dom.*;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.SAXParseException;
import org.xml.sax.ext.DefaultHandler2;
import org.xml.sax.helpers.DefaultHandler;
public class Main {
static Connection conn;
static Driver d;
static String config[] = new String[6];
static Statement state;
static ResultSet resSet;
public static void main(String argv[]) {
if (argv.length < 2) {
System.out.println("Please use -i filename.xml for import; \nPlease use -e filename.xml for export");
return;
}
// получим найтроски для подключения к базе
getConfig();
saxImport();
// создадим подключение
// jqybird скопировать в Java\jdk1.6.0_24\jre\lib\ext
// try {
// Class.forName(config[3]);
// conn = DriverManager.getConnection(config[0], config[1], config[2]);
// if (conn == null) {
// System.out.println("Cant open connection url: " + config[0] + "user: " + config[1] + "password: " + config[2]);
// return;
// }
// // установим авто коммит
// conn.setAutoCommit(true);
// state = conn.createStatement();
// } catch (SQLException e) {
// System.out.println("Error: sql : " + e.getMessage());
// return;
// } catch (ClassNotFoundException e) {
// System.out.println("Firebird JCA-JDBC driver not found in class path");
// System.out.println(e.getMessage());
// }
//
//
// // Если импорт
// if (argv[0].equals("-i")) {
// importMethod(argv[1].toString());
// }
// if (argv[0].equals("-e")) {
// exportMethod(argv[1].toString());
// }
}
// метод для импорта данных из файла указанного в аргументах
public static void importMethod(String filename) {
try {
DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder();
Document doc = docBuilder.parse(new File(filename));
doc.getDocumentElement().normalize();
// будем искать элемент meet
NodeList listOfMeets = doc.getElementsByTagName("meet");
int totalRows = listOfMeets.getLength();
int sum = 0;
System.out.println("Total rows to import: " + totalRows);
for (int s = 0; s < totalRows; s++) {
Node firstPersonNode = listOfMeets.item(s);
if (firstPersonNode.getNodeType() == Node.ELEMENT_NODE) {
Element Node = (Element) firstPersonNode;
String dateText = "", clientId = "", workerId = "", additString = "";
try {
// получим дату
NodeList dateList = Node.getElementsByTagName("date");
Element dateElement = (Element) dateList.item(0);
NodeList textDate = dateElement.getChildNodes();
dateText = ((Node) textDate.item(0)).getNodeValue().trim();
//получим идентификатор работника
NodeList workerList = Node.getElementsByTagName("worker");
Element workerElement = (Element) workerList.item(0);
NodeList textWorker = workerElement.getChildNodes();
workerId = ((Node) textWorker.item(0)).getNodeValue().trim();
// идентифкатор клиента
NodeList clientList = Node.getElementsByTagName("client");
Element clientElement = (Element) clientList.item(0);
NodeList textClient = clientElement.getChildNodes();
clientId = ((Node) textClient.item(0)).getNodeValue().trim();
// дополнительная информация
NodeList additList = Node.getElementsByTagName("addit");
Element additElement = (Element) additList.item(0);
NodeList textAddit = additElement.getChildNodes();
additString = ((Node) textAddit.item(0)).getNodeValue().trim();
} catch (NullPointerException e) {
System.out.println("Error: record error, some entries haven't all info");
}
// проверим не назначена ли уже эта встреча
try {
resSet = state.executeQuery("select meet_id from meetings where cl_man="
+ clientId + " AND w_man=" + workerId + "");
int cnt = 0;
while (resSet.next()) {
cnt++;
}
// System.out.println("cnt: " + cnt);
if (cnt == 0) {
// добавляем запись
state.execute("insert into meetings(datum, cl_man, w_man, addit) "
+ "values('" + dateText + "', '" + clientId + "', '" + workerId + "', '" + additString + "')");
System.out.println("Record insered.");
// инкрементируем общий счетчик добавленных записей
sum++;
} else {
System.out.println("Not records to import");
}
} catch (SQLException e) {
System.out.println("SQl error: " + e.getMessage());
}
}
}
System.out.println("Import finished, added rows: " + sum);
} catch (SAXException e) {
System.out.println("Error: " + e.getMessage());
} catch (ParserConfigurationException e) {
System.out.println("Error: " + e.getMessage());
} catch (IOException e) {
System.out.println("Error: cannot open file" + e.getMessage());
}
}
// экспорт данных о встрече в файл
public static void exportMethod(String filename) {
// config[4] -начало периода
// config[5] - конец периода
// проверим сущестувет ли уже такой файл
if (new File(filename).exists()) {
System.out.println("File " + filename + "already exist, you want to overwrite them?");
System.out.print("Type yes to overwrite, or type new filename: ");
// предложим поменять имя файла
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
String answer = "";
try {
answer = reader.readLine();
} catch (IOException e) {
System.out.println("IO error");
}
if (!answer.equals("yes")) {
System.out.println("Your select other file: " + answer);
filename = answer;
}
}
// формируем запрос на получение встреч
String queryString = "SELECT * from meetings where datum between '" + config[4] + "' AND '" + config[5] + "'";
try {
// получим встречи
resSet = state.executeQuery(queryString);
OutputStreamWriter out = new OutputStreamWriter(new FileOutputStream(filename));
// сформируем xmk файл
out.write("<meetings>\n");
while (resSet.next()) {
// если что есть пишем в файл
out.write("<meet>\n");
out.write("\t<data>" + resSet.getString(2).substring(0, 19) + "</data>\n");
out.write("\t<client>" + resSet.getString(3) + "</client>\n");
out.write("\t<worker>" + resSet.getString(4) + "</worker>\n");
out.write("\t<addit>" + resSet.getString(5) + "</addit>\n");
out.write("</meet>\n");
}
out.write("</meetings>\n");
out.close();
} catch (SQLException e) {
System.out.println("SQL Error: ошибка входых данных " + e.getMessage());
} catch (FileNotFoundException e) {
System.out.println("Error: file not found");
} catch (IOException e) {
System.out.println("Error: " + e.getMessage());
}
}
// метод для получения настроек к БД из файла, формат:
// url к базе
// username
// password
// драйвер org.firebirdsql.jdbc.FBDriver
// дата начала периода
// дата конца периода
public static void getConfig() {
try {
FileInputStream fStream = new FileInputStream("config.txt");
DataInputStream in = new DataInputStream(fStream);
BufferedReader buffer = new BufferedReader(new InputStreamReader(in));
String tmp;
int cnt = 0;
while ((tmp = buffer.readLine()) != null) {
config[cnt] = tmp;
cnt++;
}
in.close();
} catch (IOException e) {
System.out.println("Error: cannot open file" + e.getMessage());
}
}
public static void saxImport() {
try {
SAXParserFactory factory = SAXParserFactory.newInstance();
SAXParser saxParser = factory.newSAXParser();
saxParser.parse("D:/meetings.xml", handler);
DefaultHandler handler = new DefaultHandler() {
public void startElement(String uri, String localName, String qName,
Attributes attributes) throws SAXException {
//reset
tempVal = "";
if (qName.equalsIgnoreCase("Employee")) {
//create a new instance of employee
tempEmp = new Employee();
tempEmp.setType(attributes.getValue("type"));
}
}
public void characters(char[] ch, int start, int length) throws SAXException {
tempVal = new String(ch, start, length);
}
public void endElement(String uri, String localName,
String qName) throws SAXException {
if (qName.equalsIgnoreCase("Employee")) {
//add it to the list
myEmpls.add(tempEmp);
} else if (qName.equalsIgnoreCase("Name")) {
tempEmp.setName(tempVal);
} else if (qName.equalsIgnoreCase("Id")) {
tempEmp.setId(Integer.parseInt(tempVal));
} else if (qName.equalsIgnoreCase("Age")) {
tempEmp.setAge(Integer.parseInt(tempVal));
}
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
}