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
package common.controller;
import org.springframework.util.ResourceUtils;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import java.io.*;
@RestController
public class ContractSaveController {
@RequestMapping(value = "txt2db",method = RequestMethod.GET)
void saveTxtData2Db(){
BufferedReader reader = null;
try {
File txt = ResourceUtils.getFile("classpath:hisdata.txt");
reader = new BufferedReader(new FileReader(txt));
String tempString = null;
while ((tempString = reader.readLine()) != null) {
// 显示行号
System.out.println(tempString);
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}finally {
if (reader != null) {
try {
reader.close();
} catch (IOException e1) {
}
}
}
}
}