-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSelectionAnalysisReport.java
410 lines (352 loc) · 16.2 KB
/
SelectionAnalysisReport.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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package placements;
import java.awt.BorderLayout;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import javax.swing.BorderFactory;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.border.TitledBorder;
import javax.swing.table.DefaultTableModel;
import org.jfree.chart.ChartFactory;
import org.jfree.chart.ChartPanel;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.plot.CategoryPlot;
import org.jfree.chart.plot.PlotOrientation;
import org.jfree.data.category.DefaultCategoryDataset;
/**
*
* @author xyz
*/
public class SelectionAnalysisReport extends javax.swing.JFrame {
String username="guest";
/**
* Creates new form HomeFrame
*/
public SelectionAnalysisReport(String username) {
this.username = username;
initComponents();
setExtendedState(JFrame.MAXIMIZED_BOTH);
}
/**
* Creates new form ModuleCompletionAnalysisReport
*/
public SelectionAnalysisReport() {
initComponents();
setExtendedState(JFrame.MAXIMIZED_BOTH);
pnChart.setLayout(new java.awt.BorderLayout());
}
private DefaultCategoryDataset createDataset() {
// same dataset for line chart and bar chart
DefaultCategoryDataset dataset = new DefaultCategoryDataset();
if (jCourses.getSelectedIndex()==0) {
dataset.addValue(4, jCourses.getItemAt(1), jCourses.getItemAt(1));
dataset.addValue(2, jCourses.getItemAt(2), jCourses.getItemAt(2));
dataset.addValue(1, jCourses.getItemAt(3), jCourses.getItemAt(3));
dataset.addValue(2, jCourses.getItemAt(4), jCourses.getItemAt(4));
dataset.addValue(3, jCourses.getItemAt(5), jCourses.getItemAt(5));
}
if (jCourses.getSelectedIndex()==1) {
dataset.addValue(30, jAppraisals.getItemAt(1),"Mock Interview Round");
dataset.addValue(50, jAppraisals.getItemAt(2),"Verbal Ability Round");
dataset.addValue(20, jAppraisals.getItemAt(3), "Aptitude Test Round");
dataset.addValue(10, jAppraisals.getItemAt(4), "Machine Test Round");
}
if (jCourses.getSelectedIndex()==2) {
dataset.addValue(40, jAppraisals.getItemAt(1),"Mock Interview Round");
dataset.addValue(20, jAppraisals.getItemAt(2),"Verbal Ability Round");
dataset.addValue(30, jAppraisals.getItemAt(3), "Aptitude Test Round");
dataset.addValue(20, jAppraisals.getItemAt(4), "Machine Test Round");
}
if (jCourses.getSelectedIndex()==3) {
dataset.addValue(10, jAppraisals.getItemAt(1),"Mock Interview Round");
dataset.addValue(10, jAppraisals.getItemAt(2),"Verbal Ability Round");
dataset.addValue(20, jAppraisals.getItemAt(3), "Aptitude Test Round");
dataset.addValue(30, jAppraisals.getItemAt(4), "Machine Test Round");
}
if (jCourses.getSelectedIndex()==4) {
dataset.addValue(40, jAppraisals.getItemAt(1),"Mock Interview Round");
dataset.addValue(60, jAppraisals.getItemAt(2),"Verbal Ability Round");
dataset.addValue(50, jAppraisals.getItemAt(3), "Aptitude Test Round");
dataset.addValue(30, jAppraisals.getItemAt(4), "Machine Test Round");
}
if (jCourses.getSelectedIndex()==5) {
dataset.addValue(40, jAppraisals.getItemAt(1),"Mock Interview Round");
dataset.addValue(45, jAppraisals.getItemAt(2),"Verbal Ability Round");
dataset.addValue(30, jAppraisals.getItemAt(3), "Aptitude Test Round");
dataset.addValue(40, jAppraisals.getItemAt(4), "Machine Test Round");
}
return dataset;
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
pnChart = new javax.swing.JPanel();
jButton1 = new javax.swing.JButton();
jLabel2 = new javax.swing.JLabel();
jCourses = new javax.swing.JComboBox<>();
jLabel3 = new javax.swing.JLabel();
jAppraisals = new javax.swing.JComboBox<>();
jButton2 = new javax.swing.JButton();
jLabel4 = new javax.swing.JLabel();
jButton6 = new javax.swing.JButton();
jLabel1 = new javax.swing.JLabel();
setDefaultCloseOperation(javax.swing.WindowConstants.DO_NOTHING_ON_CLOSE);
setBackground(new java.awt.Color(255, 255, 255));
addWindowListener(new java.awt.event.WindowAdapter() {
public void windowClosing(java.awt.event.WindowEvent evt) {
formWindowClosing(evt);
}
});
getContentPane().setLayout(null);
pnChart.setBackground(new java.awt.Color(255, 255, 255));
getContentPane().add(pnChart);
pnChart.setBounds(40, 180, 860, 440);
jButton1.setText("View Summary");
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
}
});
getContentPane().add(jButton1);
jButton1.setBounds(640, 640, 110, 23);
jLabel2.setText("Course Name : ");
getContentPane().add(jLabel2);
jLabel2.setBounds(50, 640, 90, 14);
jCourses.setModel(new javax.swing.DefaultComboBoxModel<>(new String[] { "All Courses", "PGFAG", "PGJS", "PG.NET", "GNIIT", "NCS" }));
getContentPane().add(jCourses);
jCourses.setBounds(130, 640, 100, 20);
jLabel3.setText("Appraisal Code : ");
getContentPane().add(jLabel3);
jLabel3.setBounds(340, 640, 100, 14);
jAppraisals.setModel(new javax.swing.DefaultComboBoxModel<>(new String[] { "All Appraisals", "INTERVIEW", "ENGLISH", "APTITUDE", "MACHINE" }));
jAppraisals.setEnabled(false);
getContentPane().add(jAppraisals);
jAppraisals.setBounds(430, 640, 120, 20);
jButton2.setText("View Details");
jButton2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton2ActionPerformed(evt);
}
});
getContentPane().add(jButton2);
jButton2.setBounds(760, 640, 120, 23);
jLabel4.setBackground(new java.awt.Color(255, 255, 255));
jLabel4.setFont(new java.awt.Font("Arial Unicode MS", 1, 10)); // NOI18N
jLabel4.setText(username.toUpperCase());
getContentPane().add(jLabel4);
jLabel4.setBounds(480, 20, 80, 20);
jButton6.setIcon(new javax.swing.ImageIcon(getClass().getResource("/placements/logout.jpg"))); // NOI18N
jButton6.setText("jButton6");
jButton6.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
jButton6MouseClicked(evt);
}
});
getContentPane().add(jButton6);
jButton6.setBounds(903, 83, 70, 20);
jLabel1.setIcon(new javax.swing.ImageIcon(getClass().getResource("/placements/allpages.jpg"))); // NOI18N
jLabel1.setAlignmentY(0.0F);
getContentPane().add(jLabel1);
jLabel1.setBounds(0, 0, 1026, 810);
pack();
}// </editor-fold>//GEN-END:initComponents
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed
String c,a;
c = jCourses.getSelectedItem().toString();
a = jAppraisals.getSelectedItem().toString();
// create bar chart
JFreeChart barChart = ChartFactory.createBarChart(
"Student Preparation Analysis",
"Course", "Number of Students",
createDataset(),
PlotOrientation.VERTICAL,
true, true, false);
// set color
CategoryPlot plot = (CategoryPlot) barChart.getPlot();
// plot.getRenderer().setSeriesPaint(0, Color.BLUE);
// create chart panel the add it to swing panel in jframe
ChartPanel chartPanel = new ChartPanel(barChart);
pnChart.removeAll(); // clear panel before add new chart
pnChart.add(chartPanel, BorderLayout.CENTER);
pnChart.validate(); // refresh panel to display new chart
}//GEN-LAST:event_jButton1ActionPerformed
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton2ActionPerformed
showTableData();
// TODO add your handling code here:
// JFrame frame = new JFrame();
// JPanel panel = new JPanel();
// panel.setBorder(BorderFactory.createTitledBorder( BorderFactory.createEtchedBorder(), "Selection Analysis Report", TitledBorder.CENTER, TitledBorder.TOP));
// String[][] rec = {
// { "1", "Steve", "R200013300050","B200005","PGFAG","INTERVIEW","97" },
// { "2", "Virat", "R200013300052","B200005","PGFAG","INTERVIEW","92" },
// { "3", "Kane", "R200013300272","B200015","PGJS","ENGLISH","82" },
// { "4", "David", "R200013300241","B200015","PGJS","ENGLISH","81" },
// { "5", "Ben", "R200013300501","B200025","GNIIT","MACHINE","80" },
// { "6", "Eion", "R200013300511","B200025","GNIIT","APTITUDE","70" },
// { "7", "Ben", "R200013300501","B200025","GNIIT","ENGLISH","80" },
// { "8", "Eion", "R200013300511","B200025","GNIIT","INTERVIEW","70" },
// { "9", "Steve", "R200013300050","B200005","PGFAG","APTITUDE","67" },
// { "10", "Virat", "R200013300052","B200005","PGFAG","APTITUDE","62" },
// { "11", "Dhoni", "R200013300350","B200035","PG.NET","INTERVIEW","57" },
// { "12", "Rohit", "R200013300715","B200005","PGFAG","MACHINE","55" },
// { "13", "Kane", "R200013300272","B200015","PGJS","ENGLISH","82" },
// { "14", "David", "R200013300241","B200015","PGJS","ENGLISH","81" },
// { "15", "Ben", "R200013300501","B200025","GNIIT","MACHINE","80" },
// };
// String[] header = { "Rank", "Student Name", "Registration Code", "Batch Code","Course Name" , "Appraisal Name", "Score" };
// JTable table = new JTable(rec, header);
// table.setBounds(100, 100, 500, 400);
// panel.add(new JScrollPane(table));
// frame.add(panel);
// frame.setSize(600, 500);
// frame.setVisible(true);
}//GEN-LAST:event_jButton2ActionPerformed
public void showTableData()
{
String[] columnNames = {"Registration_Code", "Batch_Code", "Appraisal_Name", "Appraisal_Date", "Score" };
JFrame panel1 = new JFrame("Database Search Result");
panel1.setLayout(new BorderLayout());
//TableModel tm = new TableModel();
DefaultTableModel model = new DefaultTableModel();
model.setColumnIdentifiers(columnNames);
//DefaultTableModel model = new DefaultTableModel(tm.getData1(), tm.getColumnNames());
//table = new JTable(model);
JTable table = new JTable();
table.setModel(model);
table.setAutoResizeMode(JTable.AUTO_RESIZE_ALL_COLUMNS);
table.setFillsViewportHeight(true);
JScrollPane scroll = new JScrollPane(table);
scroll.setHorizontalScrollBarPolicy(
JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
scroll.setVerticalScrollBarPolicy(
JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
//String textvalue = textbox.getText();
String REGISTRATION_CODE = "";
String STUDENT_NAME= "";
String BATCH_CODE= "";
String COURSE_NAME= "";
String APPRAISALDATE = "";
String APPRAISAL_NAME= "";
String SCORE= "";
try
{
String jdbcURL = "jdbc:h2:C:\\Users\\xyz\\Documents\\NetBeansProjects\\Placements\\db";
String jdbcUsername = "sys";
String jdbcPassword = "1234";
String driverName = "org.h2.Driver";
Class.forName(driverName);
Connection con = DriverManager.getConnection(jdbcURL, jdbcUsername, jdbcPassword);
String sql = "select * from plcmarks";
PreparedStatement ps = con.prepareStatement(sql);
ResultSet rs = ps.executeQuery();
int i =0;
while(rs.next())
{
//BATCHCODE, GROUPCODE, APPRAISALCODE,APPRAISALDATE, REGISTRATIONCODE, MARKS
REGISTRATION_CODE = rs.getString("REGISTRATIONCODE");
//STUDENT_NAME = rs.getString("STUDENT_NAME");
BATCH_CODE= rs.getString("BATCHCODE");
//COURSE_NAME= rs.getString("COURSE_NAME");
APPRAISAL_NAME= rs.getString("APPRAISALCODE");
SCORE= rs.getString("MARKS");
APPRAISALDATE = rs.getString("APPRAISALDATE");
model.addRow(new Object[]{REGISTRATION_CODE, BATCH_CODE, APPRAISAL_NAME,APPRAISALDATE, SCORE});
i++;
}
if(i <1)
{
JOptionPane.showMessageDialog(null, "No Record Found","Error",
JOptionPane.ERROR_MESSAGE);
}
if(i ==1)
{
System.out.println(i+" Record Found");
}
else
{
System.out.println(i+" Records Found");
}
}
catch(Exception ex)
{
JOptionPane.showMessageDialog(null, ex.getMessage(),"Error",
JOptionPane.ERROR_MESSAGE);
}
panel1.add(scroll);
panel1.setVisible(true);
panel1.setSize(400,300);
}
private void formWindowClosing(java.awt.event.WindowEvent evt) {//GEN-FIRST:event_formWindowClosing
if(JOptionPane.showConfirmDialog(null, "Are you sure ?") == JOptionPane.OK_OPTION){
setVisible(false);
dispose();
new MainFrame(username).setVisible(true);}
// TODO add your handling code here:
}//GEN-LAST:event_formWindowClosing
private void jButton6MouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_jButton6MouseClicked
dispose();
new EncoreLogin().setVisible(true);
// TODO add your handling code here:
}//GEN-LAST:event_jButton6MouseClicked
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(SelectionAnalysisReport.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(SelectionAnalysisReport.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(SelectionAnalysisReport.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(SelectionAnalysisReport.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new SelectionAnalysisReport().setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JComboBox<String> jAppraisals;
private javax.swing.JButton jButton1;
private javax.swing.JButton jButton2;
private javax.swing.JButton jButton6;
private javax.swing.JComboBox<String> jCourses;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel3;
private javax.swing.JLabel jLabel4;
private javax.swing.JPanel pnChart;
// End of variables declaration//GEN-END:variables
}