-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabrirImagen.java
75 lines (61 loc) · 1.78 KB
/
abrirImagen.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
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.imageio.ImageIO;
import javax.swing.JButton;
import javax.swing.JFileChooser;
import java.awt.BorderLayout;
import java.awt.event.ActionListener;
import java.io.File;
import java.io.IOException;
import java.awt.event.ActionEvent;
import javax.swing.JLabel;
public class abrirImagen {
private JFrame frame;
/**
* Launch the application.*
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
abrirImagen window = new abrirImagen();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the application.
*/
public abrirImagen() {
initialize();
}
/**
* Initialize the contents of the frame.
*/
private void initialize() {
frame = new JFrame();
frame.setBounds(100, 100, 450, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setLayout(null);
JButton btnExplorar = new JButton("Explorar");
btnExplorar.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
JFileChooser selector=new JFileChooser();
int resultado=selector.showOpenDialog(null);
if(resultado==JFileChooser.APPROVE_OPTION){
File imagen =selector.getSelectedFile();
GUI a = new GUI(imagen);
frame.setVisible(false);
}
}
});
btnExplorar.setBounds(177, 216, 117, 25);
frame.getContentPane().add(btnExplorar);
JLabel lblSeleccionarImagen = new JLabel("Seleccionar Imagen");
lblSeleccionarImagen.setBounds(172, 101, 175, 15);
frame.getContentPane().add(lblSeleccionarImagen);
}
}