Buscar
Social
Ofertas laborales ES

Foro sobre Java SE > Joption

JOptionPane.showMessageDialog(null,"Ya está creado el Objeto Pelicula y te muestro en que posición está");
Esto funciona, pero en el titulo de la ventana me aparece "message"
¿Como puedo hacer que me aparezca "¡Atención!".
Gracias

noviembre 27, 2011 | Registered Commenterhugodepino

El método que usas no es el adecuado.

showMessageDialog

public static void showMessageDialog(Component parentComponent,
Object message,
String title,
int messageType)
throws HeadlessException
Brings up a dialog that displays a message using a default icon determined by the messageType parameter.
Parameters:
parentComponent - determines the Frame in which the dialog is displayed; if null, or if the parentComponent has no Frame, a default Frame is used
message - the Object to display
title - the title string for the dialog
messageType - the type of message to be displayed: ERROR_MESSAGE, INFORMATION_MESSAGE, WARNING_MESSAGE, QUESTION_MESSAGE, or PLAIN_MESSAGE
Throws:
HeadlessException - if GraphicsEnvironment.isHeadless returns true
See Also:
GraphicsEnvironment.isHeadless()

noviembre 27, 2011 | Registered Commenterchoces