Skip to content

Commit adb228c

Browse files
committed
update Main
1 parent dcdcad0 commit adb228c

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

src/Main.java

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,18 @@
55
public class Main {
66
public static void main(String[] args) throws IOException {
77
Map<String, String> API2Index;
8-
File api2index = new File("");
9-
File dotFile = new File("");
10-
File allPathFile = new File("");
11-
File countPathFile = new File("");
8+
File api2index = new File("/home/x/mydisk/RecRank/apiNew.txt");
9+
File dotFile = new File("/home/x/mydisk/Gralan/wjwase/datafile2");
10+
File allPathFile = new File("/home/x/mydisk/RecRank/allPathFile.txt");
11+
File countPathFile = new File("/home/x/mydisk/RecRank/countPathFile.txt");
12+
System.out.println("Read API2Index...");
1213
API2Index = ReadAPI2Index.getAPI2IndexMap(api2index);
14+
System.out.println("Finish Read API2Index");
15+
System.out.println("Write Path...");
1316
WritePathResult.ergodicDir(dotFile, allPathFile, API2Index);
17+
System.out.println("Finish Write Path");
18+
System.out.println("Read And Count PathResult...");
1419
ReadAndCountPathResult.readAndCount(allPathFile, countPathFile);
20+
System.out.println("Finish Read And Count PathResult");
1521
}
1622
}

0 commit comments

Comments
 (0)