-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnalyser.java
More file actions
66 lines (46 loc) · 1.15 KB
/
Analyser.java
File metadata and controls
66 lines (46 loc) · 1.15 KB
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
package com.languageanalyser;
import java.io.*;
import java.util.*;
import java.util.regex.Pattern;
import javax.swing.JFileChooser;
public class Analyser
{
private JFileChooser fc = new JFileChooser();
public Scanner input;
public File inFile;
public FileInputStream inPFile;
public PrintWriter pw;
public String line;
//-------------------------------
// Method for choosing file
//-------------------------------
public void chooseFile()
{
fc.setDialogTitle("Analyser");
if(fc.showOpenDialog(fc) == JFileChooser.APPROVE_OPTION)
{
analyseControl();
}
}//end of chooseFile
//------------------------------------------------
//Method that controls overall analysis of file
//------------------------------------------------
public void analyseControl()
{
inFile = fc.getSelectedFile();
try
{
input = new Scanner(inFile);
while (input.hasNext())
{
line = input.nextLine();
}
}
catch (FileNotFoundException e1)
{
System.out.println("Error");
}
input.close();
}//end of analyseControl
//test
}