-
Notifications
You must be signed in to change notification settings - Fork 0
/
Home.java
282 lines (252 loc) · 10.6 KB
/
Home.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
package view;
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import java.awt.Color;
import javax.swing.BorderFactory;
import javax.swing.BoxLayout;
import java.awt.CardLayout;
import javax.swing.JToolBar;
import javax.swing.JLayeredPane;
import javax.swing.JOptionPane;
import java.awt.FlowLayout;
import java.awt.BorderLayout;
import javax.swing.JLabel;
import java.awt.Font;
import java.awt.FontFormatException;
import java.awt.GraphicsDevice;
import java.awt.GraphicsEnvironment;
import java.io.File;
import java.io.IOException;
import java.text.DecimalFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.swing.SwingConstants;
import javax.swing.JButton;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import javax.swing.JTextPane;
import java.awt.GridLayout;
import java.awt.Insets;
import java.awt.Rectangle;
import java.awt.Toolkit;
import java.awt.GridBagLayout;
import java.awt.GridBagConstraints;
import javax.swing.SpringLayout;
import javax.swing.GroupLayout;
import javax.swing.GroupLayout.Alignment;
import java.awt.Component;
import java.awt.Dimension;
import javax.swing.JSplitPane;
import javax.swing.JInternalFrame;
import javax.swing.JDesktopPane;
import java.awt.Cursor;
import javax.swing.JComboBox;
import javax.swing.DefaultComboBoxModel;
public class Home extends JFrame {
private JPanel contentPane;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
Home frame = new Home();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the frame.
*/
public Home() {
setResizable(false);
setBackground(new Color(255, 255, 255));
setTitle("Conversor de unidades");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 450, 300);
contentPane = new JPanel();
contentPane.setBackground(new Color(240, 240, 240));
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
BorderLayout bl_contentPane = new BorderLayout();
bl_contentPane.setVgap(50);
contentPane.setLayout(bl_contentPane);
JPanel panel = new JPanel();
panel.setBorder(new EmptyBorder(20, 70, 20, 70));
panel.setSize(new Dimension(100, 100));
panel.setLayout(new GridLayout(2, 1, 10, 10));
contentPane.add(panel, BorderLayout.CENTER);
JComboBox cbConversores = new JComboBox();
cbConversores.setMaximumRowCount(3);
cbConversores.setModel(new DefaultComboBoxModel(new String[] {"Conversor de monedas", "Conversor de unidades"}));
cbConversores.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
panel.add(cbConversores);
JButton btnContinuar = new JButton("Continuar");
btnContinuar.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
String opcion= (String) cbConversores.getSelectedItem();
if(opcion=="Conversor de unidades") {
List<List<String>> lstOpciones= new ArrayList<>();
String[] valores = new String[10];
int indiceValores=0;
lstOpciones.add(new ArrayList<String>(Arrays.asList("M","KM","Metro", "Kilometro", "1000")));
lstOpciones.add(new ArrayList<String>(Arrays.asList("M","MILLA","Metro", "Milla", "1609.34")));
lstOpciones.add(new ArrayList<String>(Arrays.asList("M","CM","Metro", "Centímetro", "0.01")));
lstOpciones.add(new ArrayList<String>(Arrays.asList("M","MM","Metro", "Milímetro", "0.001")));
lstOpciones.add(new ArrayList<String>(Arrays.asList("M","DM","Metro", "Decametro", "0.1")));
for (int i = 0; i < lstOpciones.size(); i++) {
valores[indiceValores] = "De "+lstOpciones.get(i).get(2)+" a "+lstOpciones.get(i).get(3);
indiceValores++;
valores[indiceValores] = "De "+lstOpciones.get(i).get(3)+" a "+lstOpciones.get(i).get(2);
indiceValores++;
}
Object opcionMoneda = JOptionPane.showInputDialog(
null,
"Seleccione una opción de conversión:",
"Conversor de unidades",
JOptionPane.PLAIN_MESSAGE,
null,
valores,
valores[0]);
if(opcionMoneda != null) {
Object input = JOptionPane.showInputDialog(
null,
"Ingrese el valor que deseas convertir: ",
"Conversor de unidades",
JOptionPane.QUESTION_MESSAGE,
null,
null,
null);
if(input != null) {
try {
String opcionConversion = (String) opcionMoneda, opInicial,opFinal;
Pattern pattern = Pattern.compile("^\\d+(\\.\\d+)?$");
if (!pattern.matcher(input.toString()).matches()) {
throw new NumberFormatException();
}
double valor = Double.parseDouble(input.toString()),conversion=0,cambio=0;
opcionConversion = opcionConversion.replace("De ", "");
opcionConversion = opcionConversion.replace(" a ", ";");
String[] subCadenas = opcionConversion.split(";");
opInicial = subCadenas[0];
opFinal = subCadenas[1];
for (List<String> lista : lstOpciones) {
if ((opInicial.equals(lista.get(2)) && opFinal.equals(lista.get(3))) ||
(opInicial.equals(lista.get(3)) && opFinal.equals(lista.get(2)))) {
cambio = Double.parseDouble(lista.get(4));
break;
}
}
if(opInicial.equals("Metro")) {
conversion = valor / cambio;
} else {
conversion = valor * cambio;
}
DecimalFormat df = new DecimalFormat("#.##");
JOptionPane.showMessageDialog(null, "El resultado es "+df.format(conversion)+" "+opFinal+"s", "Resultado", JOptionPane.INFORMATION_MESSAGE);
int respuesta = JOptionPane.showConfirmDialog(null, "¿Desea continuar usando el programa?", "Confirmación", JOptionPane.YES_NO_CANCEL_OPTION);
if(respuesta == JOptionPane.NO_OPTION) {
JOptionPane.showMessageDialog(null, "Programa finalizado", "Información", JOptionPane.INFORMATION_MESSAGE);
System.exit(0);
}
}
catch(NumberFormatException ex){
JOptionPane.showMessageDialog(null, "El valor ingresado no es un número válido.", "Error", JOptionPane.ERROR_MESSAGE);
}
}
}
}
else if(opcion == "Conversor de monedas"){
List<List<String>> lstOpciones= new ArrayList<>();
String[] valores = new String[10];
int indiceValores=0;
lstOpciones.add(new ArrayList<String>(Arrays.asList("COP","USD","Peso colombiano", "Dolar estadounidense", "4506.23")));
lstOpciones.add(new ArrayList<String>(Arrays.asList("COP","EU","Peso colombiano", "Euro", "4947.14")));
lstOpciones.add(new ArrayList<String>(Arrays.asList("COP","GBP","Peso colombiano", "Libra esterlina", "5670.51")));
lstOpciones.add(new ArrayList<String>(Arrays.asList("COP","JPY","Peso colombiano", "Yen japonés", "33.31")));
lstOpciones.add(new ArrayList<String>(Arrays.asList("COP","KRW","Peso colombiano", "Won surcoreano", "3.40")));
for (int i = 0; i < lstOpciones.size(); i++) {
valores[indiceValores] = "De "+lstOpciones.get(i).get(2)+" a "+lstOpciones.get(i).get(3);
indiceValores++;
valores[indiceValores] = "De "+lstOpciones.get(i).get(3)+" a "+lstOpciones.get(i).get(2);
indiceValores++;
}
Object opcionMoneda = JOptionPane.showInputDialog(
null,
"Seleccione una opción de conversión:",
"Conversor de monedas",
JOptionPane.PLAIN_MESSAGE,
null,
valores,
valores[0]);
if(opcionMoneda != null) {
Object input = JOptionPane.showInputDialog(
null,
"Ingrese la cantidad de dinero que deseas convertir: ",
"Conversor de monedas",
JOptionPane.QUESTION_MESSAGE,
null,
null,
null);
if(input != null) {
try {
String opcionConversion = (String) opcionMoneda, opInicial,opFinal;
Pattern pattern = Pattern.compile("^\\d+(\\.\\d+)?$");
if (!pattern.matcher(input.toString()).matches()) {
throw new NumberFormatException();
}
double valor = Double.parseDouble(input.toString()),conversion=0,cambio=0;
opcionConversion = opcionConversion.replace("De ", "");
opcionConversion = opcionConversion.replace(" a ", ";");
String[] subCadenas = opcionConversion.split(";");
opInicial = subCadenas[0];
opFinal = subCadenas[1];
for (List<String> lista : lstOpciones) {
if ((opInicial.equals(lista.get(2)) && opFinal.equals(lista.get(3))) ||
(opInicial.equals(lista.get(3)) && opFinal.equals(lista.get(2)))) {
cambio = Double.parseDouble(lista.get(4));
break;
}
}
if(opInicial.equals("Peso colombiano")) {
conversion = valor / cambio;
} else {
conversion = valor * cambio;
}
DecimalFormat df = new DecimalFormat("#.##");
JOptionPane.showMessageDialog(null, "Tienes $ "+df.format(conversion)+" "+opFinal, "Resultado", JOptionPane.INFORMATION_MESSAGE);
int respuesta = JOptionPane.showConfirmDialog(null, "¿Desea continuar usando el programa?", "Confirmación", JOptionPane.YES_NO_CANCEL_OPTION);
if(respuesta == JOptionPane.NO_OPTION) {
JOptionPane.showMessageDialog(null, "Programa finalizado", "Información", JOptionPane.INFORMATION_MESSAGE);
System.exit(0);
}
}
catch(NumberFormatException ex){
JOptionPane.showMessageDialog(null, "El valor ingresado no es un número válido.", "Error", JOptionPane.ERROR_MESSAGE);
}
}
}
}
}
});
panel.add(btnContinuar);
JLabel lblTitulo = new JLabel("<html>Bienvenido al conversor de unidades<br>Seleccione una opción de conversión</html>");
lblTitulo.setVerticalAlignment(SwingConstants.TOP);
lblTitulo.setHorizontalAlignment(SwingConstants.CENTER);
lblTitulo.setFont(new Font("Monospaced", Font.PLAIN, 14));
lblTitulo.setBorder(new EmptyBorder(50, 0, 0, 0));
contentPane.add(lblTitulo, BorderLayout.NORTH);
}
}