¡Buen día, coders! El día de hoy vamos a resolver un caso propuesto que nos envió un seguidor de la página. Nos pide crear un bloc de notas similar al que trae Windows con todas las funcionalidades. Para resolver este caso, debemos tener conocimiento sobre Manejo de Archivos de textos y haber utilizado estas clases del paquete java.io de Java: File, FileWriter, BufferedWriter, PrintWriter, FileReader, BufferedReader.
CASO PRÁCTICO – BLOC DE NOTAS
Se pide crear un bloc de notas similar al que trae el sistema operativo Windows.
El programa debe permitir cambiar el tamaño de la fuente.
El programa debe tener las opciones en el menú para crear nuevo archivo, abrir archivo y guardar archivos de texto.
El programa debe tener las opciones para copiar, cortar, pegar y borrar texto.
Emplee menús y barra de herramientas
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 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 | package editor; import javax.swing.*; import java.awt.event.*; import java.awt.*; import java.io.*; class Editor extends JFrame { /** Declaración de variables globales para la GUI **/ private JButton btnCortar, btnCopiar, btnPegar, btnNuevo, btnGuardar, btnAbrir, btnAcerca, btnAyuda; private JComboBox cboFuente; private JScrollPane scpScroll; private JTextArea txtArea; private Font fuente; private int tamaño = 17; /** Crea la GUI **/ public Editor() { super("Editor de textos"); try { UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel"); //com.sun.java.swing.plaf.motif.MotifLookAndFeel //javax.swing.plaf.nimbus.NimbusLookAndFeel //javax.swing.plaf.metal.MetalLookAndFeel } catch (Exception e) { JOptionPane.showMessageDialog(null, "Error al intentar cargar L&F"); } menus(); // Crea el menú barra(); // Crea la barra de herramientas fuente = new Font("Arial", Font.PLAIN, tamaño); txtArea = new JTextArea(); txtArea.setFont(fuente); scpScroll = new JScrollPane(txtArea); getContentPane().add(scpScroll, BorderLayout.CENTER); JPanel panel = new JPanel(); JPanel panel1 = new JPanel(); JPanel panel2 = new JPanel(); panel.setBackground(Color.lightGray); panel1.setBackground(Color.lightGray); panel2.setBackground(Color.lightGray); add(panel, BorderLayout.SOUTH); add(panel1, BorderLayout.WEST); add(panel2, BorderLayout.EAST); setSize(800, 580); setVisible(true); } /** Menú de opciones **/ public void menus() { JMenuBar menus = new JMenuBar(); // MENÚ ARCHIVO JMenu archivo = new JMenu("Archivo"); JMenuItem nuevo = new JMenuItem("Nuevo", new ImageIcon("images/nuevo.png")); nuevo.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { nuevo(); } }); JMenuItem salir = new JMenuItem("Salir", new ImageIcon("images/salir.png")); salir.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { String d = JOptionPane.showInputDialog("Desea salir y guardar el archivo S/N"); if (d.equals("s")) { guardar(); System.exit(0); } else if (d.equals("n")) { System.exit(0); } else { JOptionPane.showMessageDialog(null, "Caracter invalido"); } } }); JMenuItem abrir = new JMenuItem("Abrir", new ImageIcon("images/abrir.png")); abrir.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { abrir(); } }); JMenuItem guardar = new JMenuItem("Guardar", new ImageIcon("images/guardar.png")); guardar.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { guardar(); } }); // MENÚ EDITAR JMenu editar = new JMenu("Editar"); JMenuItem cortar = new JMenuItem("Cortar", new ImageIcon("images/cortar.png")); cortar.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { cortar(); } }); JMenuItem copiar = new JMenuItem("Copiar", new ImageIcon("images/copiar.png")); copiar.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { copiar(); } }); JMenuItem pegar = new JMenuItem("Pegar", new ImageIcon("images/pegar.png")); pegar.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { pegar(); } }); JMenuItem tamaño_fuente = new JMenuItem("Tamaño de fuente", new ImageIcon("images/fuente.png")); tamaño_fuente.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { tamaño_f(); } }); // MENÚ AYUDA JMenu ayuda = new JMenu("Ayuda"); JMenuItem ayu = new JMenuItem("Ayuda", new ImageIcon("images/information.png")); ayu.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { ayuda(); } }); JMenuItem acerca = new JMenuItem("Acerca de...", new ImageIcon("images/bombilla.png")); acerca.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { acerca(); } }); archivo.add(nuevo); archivo.add(salir); archivo.addSeparator(); archivo.add(abrir); archivo.add(guardar); editar.add(cortar); editar.add(copiar); editar.add(pegar); editar.addSeparator(); editar.add(tamaño_fuente); ayuda.add(ayu); ayuda.add(acerca); menus.add(archivo); menus.add(editar); menus.add(ayuda); setJMenuBar(menus); } /** Barra de herramientas **/ public void barra() { JToolBar barras = new JToolBar(); // TOOL NUEVO btnNuevo = new JButton(); btnNuevo.setIcon(new ImageIcon("images/nuevo.png")); btnNuevo.setMargin(new Insets(3, 0, 0, 0)); btnNuevo.setToolTipText("Nuevo"); btnNuevo.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { nuevo(); } }); barras.add(btnNuevo); // TOOL ABRIR btnAbrir = new JButton(); btnAbrir.setIcon(new ImageIcon("images/abrir.png")); btnAbrir.setMargin(new Insets(2, 0, 0, 0)); btnAbrir.setToolTipText("Abrir"); btnAbrir.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { abrir(); } }); barras.add(btnAbrir); // TOOL GUARDAR btnGuardar = new JButton(); btnGuardar.setIcon(new ImageIcon("images/guardar.png")); btnGuardar.setMargin(new Insets(2, 0, 0, 0)); btnGuardar.setToolTipText("Guardar"); btnGuardar.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { guardar(); } }); barras.add(btnGuardar); barras.addSeparator(); // TOOL CORTAR btnCortar = new JButton(); btnCortar.setIcon(new ImageIcon("images/cortar.png")); btnCortar.setMargin(new Insets(2, 0, 0, 0)); btnCortar.setToolTipText("Cortar"); btnCortar.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { cortar(); } }); barras.add(btnCortar); // TOOL COPIAR btnCopiar = new JButton(); btnCopiar.setIcon(new ImageIcon("images/copiar.png")); btnCopiar.setMargin(new Insets(-3, 0, 0, 0)); btnCopiar.setToolTipText("Copiar"); btnCopiar.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { copiar(); } }); barras.add(btnCopiar); // TOOL PEGAR btnPegar = new JButton(); btnPegar.setIcon(new ImageIcon("images/pegar.png")); btnPegar.setMargin(new Insets(2, 0, 0, 0)); btnPegar.setToolTipText("Pegar"); btnPegar.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { pegar(); } }); barras.add(btnPegar); // TOOL BORRAR JButton del = new JButton(); del.setIcon(new ImageIcon("images/borrar.png")); del.setMargin(new Insets(2, 0, 0, 0)); del.setToolTipText("BORRAR todo el texto"); del.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { txtArea.setText(""); } }); barras.add(del); barras.addSeparator(); // TOOL AYUDA btnAyuda = new JButton(); btnAyuda.setIcon(new ImageIcon("images/information.png")); btnAyuda.setMargin(new Insets(2, 0, 0, 0)); btnAyuda.setToolTipText("Ayuda"); btnAyuda.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { ayuda(); } }); barras.add(btnAyuda); // TOOL ACERCA btnAcerca = new JButton(); btnAcerca.setIcon(new ImageIcon("images/bombilla.png")); btnAcerca.setMargin(new Insets(5, 2, 0, 0)); btnAcerca.setToolTipText("Acerca de..."); btnAcerca.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { acerca(); } }); barras.add(btnAcerca); barras.addSeparator(); // TOOL FUENTE cboFuente = new JComboBox(); cboFuente.addItem("Tamaño Fuente"); cboFuente.addItem("10"); cboFuente.addItem("20"); cboFuente.addItem("30"); cboFuente.addItem("40"); cboFuente.addItem("50"); cboFuente.addItem("Personalizar"); cboFuente.setToolTipText("Tamaño de fuente"); cboFuente.addItemListener(new ItemListener() { public void itemStateChanged(ItemEvent e) { int elegido; elegido = cboFuente.getSelectedIndex(); switch (elegido) { case 1: fuente = new Font("Arial", Font.PLAIN, 10); txtArea.setFont(fuente); break; case 2: fuente = new Font("Arial", Font.PLAIN, 20); txtArea.setFont(fuente); break; case 3: fuente = new Font("Arial", Font.PLAIN, 30); txtArea.setFont(fuente); break; case 4: fuente = new Font("Arial", Font.PLAIN, 40); txtArea.setFont(fuente); break; case 5: fuente = new Font("Arial", Font.PLAIN, 50); txtArea.setFont(fuente); break; case 6: tamaño = Integer.parseInt(JOptionPane.showInputDialog("Digite el tamaño de la fuente")); fuente = new Font("Arial", Font.PLAIN, tamaño); txtArea.setFont(fuente); break; } } }); barras.add(cboFuente); barras.addSeparator(); getContentPane().add(barras, BorderLayout.NORTH); } /** Funcionalidades **/ public void nuevo() { new Editor(); } public void abrir() { JFileChooser fileChooser = new JFileChooser(); fileChooser.setFileSelectionMode(JFileChooser.FILES_ONLY); int result = fileChooser.showOpenDialog(this); if (result == JFileChooser.CANCEL_OPTION) return; File name = fileChooser.getSelectedFile(); if (name.exists()) { if (name.isFile()) { try { BufferedReader input = new BufferedReader(new FileReader(name)); StringBuffer buffer = new StringBuffer(); String text; txtArea.setText(""); while ((text = input.readLine()) != null) buffer.append(text + "\n"); txtArea.append(buffer.toString()); } catch (IOException ioException) { JOptionPane.showMessageDialog(null, "Error en el archivo", "Error", JOptionPane.ERROR_MESSAGE); } } else if (name.isDirectory()) { String directory[] = name.list(); txtArea.append("\n\nContenido del directorio:\n"); for (int i = 0; i < directory.length; i++) txtArea.append(directory[i] + "\n"); } else { JOptionPane.showMessageDialog(null, " No existe ", " Error ", JOptionPane.ERROR_MESSAGE); } } } public void guardar() { JOptionPane.showMessageDialog(null, "¡Por favor no olvide colocar la extension del archivo (*.txt)!"); JFileChooser fileChooser = new JFileChooser(); fileChooser.setFileSelectionMode(JFileChooser.FILES_ONLY); int result = fileChooser.showSaveDialog(this); if (result == JFileChooser.CANCEL_OPTION) return; File name = fileChooser.getSelectedFile(); try { PrintWriter output = new PrintWriter(new FileWriter(name)); output.write(txtArea.getText()); output.close(); } catch (IOException ioException) { JOptionPane.showMessageDialog(null, "Error en el archivo", "Error", JOptionPane.ERROR_MESSAGE); } } public void cortar() { txtArea.cut(); } public void copiar() { txtArea.copy(); } public void pegar() { txtArea.paste(); } public void ayuda() { JOptionPane.showMessageDialog(null, " Nuevo: Abre una nueva ventana\n Abrir: Abre un documento existente\n Guardar: " + "Guarda el documento\n Salir: Salir del programa\n Cortar: ctrl+x\n Copiar: " + "ctrl+c\n Pegar: ctrl+v\n Salir sin guardar: alt+F4"); } public void tamaño_f() { tamaño = Integer.parseInt(JOptionPane.showInputDialog("Digite el tamaño de la fuente")); fuente = new Font("Arial", Font.PLAIN, tamaño); txtArea.setFont(fuente); } public void acerca() { JOptionPane.showMessageDialog(null, "Editor de textos" + "\nDesarrollado por: Tu nombre" + "\nIngenieria de sistemas" + "\nNombre de Tu universidad" + "\nCodigo: 10000000000" + "\nE-mail: tuemail@gmail.com"); } /** Lanza la aplicación **/ public static void main(String[] args) { JOptionPane.showMessageDialog(null, "Para el correto funcionamiento del programa procure" + "\nabrir solo archivos de tipo *.txt"); new Editor(); } } |
DESARROLLO TUS ALGORITMOS 🔥🔥
No hay comentarios, ¡cuéntame algo!
Me gustaría saber tu opinión. ¡Saludos!