-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSearchAddress.java
More file actions
147 lines (128 loc) · 3.18 KB
/
SearchAddress.java
File metadata and controls
147 lines (128 loc) · 3.18 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
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
import java.io.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.util.*;
@SuppressWarnings("all")
public class SearchAddress extends JFrame implements ActionListener
{
JTable table;
Object data[][];
Object dataArray[][];
final String[] colHeads = {"Entry ID","Name"," Address","City","State","Country","Pincode"};
JPanel panel1,panel3;
int count =0;
String st;
JButton cmd_back;
public SearchAddress(String st1,String str)
{
super(st1);
st =str;
getContentPane().setLayout(new BorderLayout());
panel1=new JPanel();
panel3=new JPanel();
cmd_back=new JButton("Back");
cmd_back.addActionListener(this);
panel1.setLayout(new FlowLayout(FlowLayout.CENTER));
panel3.setLayout(new FlowLayout(FlowLayout.CENTER));
fillTable();
panel1.add(new JLabel("Addresses Matched"));
panel3.add(cmd_back);
getContentPane().add(panel1,BorderLayout.NORTH);
getContentPane().add(panel3,BorderLayout.SOUTH);
addWindowListener(new MyWindowAdapter());
}
public void fillTable()
{
int count =0;
String str;
try
{
BufferedReader BR=new BufferedReader( new FileReader("AddressFile"));
while((str = BR.readLine()) != null)
{
count++;
}
BR.close();
}
catch(Exception e) {}
Object Id;
Object name;
data=new Object[count][7];
int i=0;
int j=0;
int m;
try
{
BufferedReader br=new BufferedReader( new FileReader("AddressFile"));
while((str = br.readLine()) != null)
{
StringTokenizer Str= new StringTokenizer(str, "*");
int n=Str.countTokens();
Id=Str.nextElement();
name=Str.nextElement();
String strnameLow=name.toString().toLowerCase();
String strnameUpp=name.toString().toUpperCase(); if(strnameLow.startsWith(st.toLowerCase()) || strnameUpp.startsWith(st.toUpperCase()))
{
data[i][0]=Id;
data[i][1]=name;
for(j=2;j<n;j++)
{
data[i][j]=Str.nextElement();
}
i=i+1;
}
}
br.close();
}
catch(IOException io)
{
System.out.println("error"+io);
}
//System.arraycopy(data,0,dataArray,0,i);
dataArray= new Object[i][7];
for(int a=0;a<i;a++)
{
for(int b=0;b<7;b++)
{
dataArray[a][b]=data[a][b];
}
}
table = new JTable(dataArray,colHeads);
int V = ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED;
int H = ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;
JScrollPane ScrollBar = new JScrollPane(table,V,H);
getContentPane().add(ScrollBar,BorderLayout.CENTER);
}
public void actionPerformed(ActionEvent ae)
{
if(ae.getSource() == cmd_back)
{
setVisible(false);
SearchAddr addform=new SearchAddr("Search Address Form");
addform.setSize(300,300);
addform.setResizable(false);
addform.setVisible(true);
dispose();
}
}
/* public static void main(String args[])
{
SearchAddress AF = new SearchAddress();
AF.setSize(600,300);
AF.setVisible(true);
}
*/
class MyWindowAdapter extends WindowAdapter
{
public void windowClosing(WindowEvent we)
{
setVisible(false);
SearchAddr addform=new SearchAddr("Search Address Form");
addform.setSize(300,300);
addform.setResizable(false);
addform.setVisible(true);
dispose();
}
}
}