import javax.swing.ImageIcon; import javax.swing.JOptionPane; public class Main{ public static void main(String[] args) {
//JOptionPane = pop up a standard dialog box that prompts users for a value // or informs them of something.
//JOptionPane.showMessageDialog(null, "This is a message dialog box", "title", JOptionPane.PLAIN_MESSAGE); //JOptionPane.showMessageDialog(null, "Here is some useless info", "title", JOptionPane.INFORMATION_MESSAGE); //JOptionPane.showMessageDialog(null, "really?", "title", JOptionPane.QUESTION_MESSAGE); //JOptionPane.showMessageDialog(null, "Your computer has a VIRUS!", "title", JOptionPane.WARNING_MESSAGE); //JOptionPane.showMessageDialog(null, "CALL TECH SUPPORT OR ELSE!", "title", JOptionPane.ERROR_MESSAGE);
//int answer = JOptionPane.showConfirmDialog(null, "bro, do you even code?"); //String name = JOptionPane.showInputDialog("What is your name?: ");
ImageIcon icon = new ImageIcon("smile.png"); String[] responses = {"No, you are!","thank you!","*blush*"}; int answer = JOptionPane.showOptionDialog( null, "You are the best! :D", "Secret message", JOptionPane.DEFAULT_OPTION, 0, icon, responses, responses[0]); System.out.println(answer);
Hey fam, I hope that you and your loved ones are well. I would like to ask you the most important question ever asked: Who is Jesus? Not who is He to you. Rather, who is He really? Jesus is the Son of God, who came to the world as a man. He lived a perfect and sinless life . Even though He was perfect and sinless, on the cross of Calvary God wrathfully punished Him for the sins of the world. 3 days later He rose from death. Now He is seated at the right hand of God, ruling as King over Heaven and Earth. On the judgment day He will judge you, me and every human being that has ever lived. Those who believed in Him will enter eternal joy with Him, but those who did not believe in Jesus will be sent to eternal condemnation. So turn from your sins and believe in the Jesus, that you can be forgiven for all your sins, because of His death and resurrection. Acts 15:11 ”On the contrary, we believe it is through the grace of the Lord Jesus that we are saved, just as they are." Ephesians 1:7 ”In Him, we have redemption through His blood, the forgiveness of our trespasses, according to the riches of His grace" Ephesians 2:8 ”For it is by grace you have been saved through faith, and this not from yourselves; it is the gift of God,” John 11:25-26: "Jesus said to her, 'I am the resurrection and the life. The one who believes in me will live, even though they die; and whoever lives by believing in me will never die. Do you believe this?' 1 Corinthians 6:14: "And God raised the Lord and will also raise us up by his power." Romans 6:9: "We know that Christ, being raised from the dead, will never die again; death no longer has dominion over him."
When you insert the showConfirmDialog method it looks like Eclipse creates placeholder arguments that shows what type of arguments you should give. When I insert showConfirmDialog I get: "null, args, null, 0". Is there an option to switch between these behaviours?
This is the best Java tutorial for beginners, so you can learn Java and English in one hit. Please keep going! I vote for Java advance tutorial. Thanks a lot Bro
Had a vague understanding of this after a 2 hour class lecture. This video really helped clarify and I was able to make some boxes. Keep em' coming bro!
Bro code can u tell me the settings of eclipse so that i can also get the name of the parameters as a hint ? something like below?? JOptionPane.showMessageDialog(parentcomponent, message, title , messageType);
if u want play again option u can add this code in xWins and oWins, dont need to run program again :D int option=JOptionPane.showConfirmDialog(null, "Wanna play again?","Tic-Tac-Toe", JOptionPane.YES_NO_CANCEL_OPTION); if (option==JOptionPane.YES_OPTION) { frame.dispose(); new Game(); } if (option==JOptionPane.NO_OPTION || option==JOptionPane.CANCEL_OPTION) { System.exit(0); }
I can't use JOptionPane despite having downloaded jdk 22 and included it in my project, can someone tell me what might have been the problem? Thank you!
How can display or have a showMessageDialog respond to my input, however, i also want it to continuously accept input and showinputdialog again, a while loop until i put “stop”
For example you can create an array of JButtons instead of an array of Strings and you can use the setFocusable(false) method for each button. Finally, remember to pass null to the last parameter of the showOptionDialog.
Hi, I deployed application in one server and trying to access application in another server(through diff machine) .What i observed is dialog box is showing in the same server where i deployed not in the testing server
Below int answer = JOptionPane.showConfirmDialog , you can use if else condition instead like this: if (answer == 0) { System.out.println("Yes"); } else if (answer == 1) { System.out.println("No"); } else if (answer == 2) { System.out.println("Cancel"); }
eclipse: u r awesome! bro: no eclipse: :( me: he is not awesome. he is a lifesaviourforabeginnerprogrammerlikemeandiwatchhisvideosformyeducationpurposesanditisgreat
//whoops! I forgot to post the code lol import javax.swing.ImageIcon; import javax.swing.JOptionPane; public class Main{ public static void main(String[] args) {
//JOptionPane = pop up a standard dialog box that prompts users for a value // or informs them of something.
//JOptionPane.showMessageDialog(null, "This is a message dialog box", "title", JOptionPane.PLAIN_MESSAGE); //JOptionPane.showMessageDialog(null, "Here is some useless info", "title", JOptionPane.INFORMATION_MESSAGE); //JOptionPane.showMessageDialog(null, "really?", "title", JOptionPane.QUESTION_MESSAGE); //JOptionPane.showMessageDialog(null, "Your computer has a VIRUS!", "title", JOptionPane.WARNING_MESSAGE); //JOptionPane.showMessageDialog(null, "CALL TECH SUPPORT OR ELSE!", "title", JOptionPane.ERROR_MESSAGE);
//int answer = JOptionPane.showConfirmDialog(null, "bro, do you even code?"); //String name = JOptionPane.showInputDialog("What is your name?: ");
ImageIcon icon = new ImageIcon("smile.png"); String[] responses = {"No, you are!","thank you!","*blush*"}; int answer = JOptionPane.showOptionDialog( null, "You are the best! :D", "Secret message", JOptionPane.DEFAULT_OPTION, 0, icon, responses, responses[0]); System.out.println(answer);
import javax.swing.ImageIcon;
import javax.swing.JOptionPane;
public class Main{
public static void main(String[] args) {
//JOptionPane = pop up a standard dialog box that prompts users for a value
// or informs them of something.
//JOptionPane.showMessageDialog(null, "This is a message dialog box", "title", JOptionPane.PLAIN_MESSAGE);
//JOptionPane.showMessageDialog(null, "Here is some useless info", "title", JOptionPane.INFORMATION_MESSAGE);
//JOptionPane.showMessageDialog(null, "really?", "title", JOptionPane.QUESTION_MESSAGE);
//JOptionPane.showMessageDialog(null, "Your computer has a VIRUS!", "title", JOptionPane.WARNING_MESSAGE);
//JOptionPane.showMessageDialog(null, "CALL TECH SUPPORT OR ELSE!", "title", JOptionPane.ERROR_MESSAGE);
//int answer = JOptionPane.showConfirmDialog(null, "bro, do you even code?");
//String name = JOptionPane.showInputDialog("What is your name?: ");
ImageIcon icon = new ImageIcon("smile.png");
String[] responses = {"No, you are!","thank you!","*blush*"};
int answer = JOptionPane.showOptionDialog(
null,
"You are the best! :D",
"Secret message",
JOptionPane.DEFAULT_OPTION,
0,
icon,
responses,
responses[0]);
System.out.println(answer);
}
}
Hey fam, I hope that you and your loved ones are well. I would like to ask you the most important question ever asked:
Who is Jesus? Not who is He to you. Rather, who is He really?
Jesus is the Son of God, who came to the world as a man. He lived a perfect and sinless life . Even though He was perfect and sinless, on the cross of Calvary God wrathfully punished Him for the sins of the world. 3 days later He rose from death. Now He is seated at the right hand of God, ruling as King over Heaven and Earth.
On the judgment day He will judge you, me and every human being that has ever lived. Those who believed in Him will enter eternal joy with Him, but those who did not believe in Jesus will be sent to eternal condemnation.
So turn from your sins and believe in the Jesus, that you can be forgiven for all your sins, because of His death and resurrection.
Acts 15:11
”On the contrary, we believe it is through the grace of the Lord Jesus that we are saved, just as they are."
Ephesians 1:7
”In Him, we have redemption through His blood, the forgiveness of our trespasses, according to the riches of His grace"
Ephesians 2:8
”For it is by grace you have been saved through faith, and this not from yourselves; it is the gift of God,”
John 11:25-26: "Jesus said to her, 'I am the resurrection and the life. The one who believes in me will live, even though they die; and whoever lives by believing in me will never die. Do you believe this?'
1 Corinthians 6:14: "And God raised the Lord and will also raise us up by his power."
Romans 6:9: "We know that Christ, being raised from the dead, will never die again; death no longer has dominion over him."
When you insert the showConfirmDialog method it looks like Eclipse creates placeholder arguments that shows what type of arguments you should give.
When I insert showConfirmDialog I get: "null, args, null, 0".
Is there an option to switch between these behaviours?
Had zero idea about JOptionPane, came here, spent 12 mins, can code custom dialog boxes like a Pro now!!!. Thanks a lot
This is the best Java tutorial for beginners, so you can learn Java and English in one hit. Please keep going! I vote for Java advance tutorial. Thanks a lot Bro
Had a vague understanding of this after a 2 hour class lecture. This video really helped clarify and I was able to make some boxes. Keep em' coming bro!
Great video, straight to the point! Thanks!
A man with zero dislikes
just shared your channel on facebook ;) Great tuts :D
Thanks bro! I hate to admit it, but I could use all the help I can get. Thanks again
Increíble. Que genial es esta forma de mostrar mensajes en Java :D
You're awesome, teacher!
God Bless You Man!!!🙌
Yo bro, you just help me study last minute for a midterm in one hour! thanks!
great vid bro, as always
We need teachers like you Bro😂❤
cool tutorial now i know more about joptionpane would recommend
Very informative video bro.. And you are awesome 👍
awesome
Once again, awesome content bro! Thank you so much for this! Keep up the good work!
Thank you for this video.
very useful
nice
Amazing
nice video
Bro code can u tell me the settings of eclipse so that i can also get the name of the parameters as a hint ? something like below??
JOptionPane.showMessageDialog(parentcomponent, message, title , messageType);
Verry helpful
*random comment for youtube's algorithm*
You're awesome indeed😊😊
7:55 never before have I laughed at a code output. lmao
Same xD
Awesome
hey is there an an alternative to JOptionPane? It seems to have been removed in Java SE 20.
😑
Super
lets defeat the algorithm! 😂and thank you for the video
You are awesome. No.. You are very awesome
if u want play again option u can add this code in xWins and oWins, dont need to run program again :D
int option=JOptionPane.showConfirmDialog(null, "Wanna play again?","Tic-Tac-Toe", JOptionPane.YES_NO_CANCEL_OPTION);
if (option==JOptionPane.YES_OPTION) {
frame.dispose();
new Game();
}
if (option==JOptionPane.NO_OPTION || option==JOptionPane.CANCEL_OPTION) {
System.exit(0);
}
so cool
You are awesome bro !!!!
Thankx
Thank you sir
Bro, you are wow
best guy#
Bro can you provide a link or a way to get those pngs as well?
Videos are really awesome...
thank you for the content
❤❤
Thanks
Made it so easy
thx awesome lesson
I can't use JOptionPane despite having downloaded jdk 22 and included it in my project, can someone tell me what might have been the problem? Thank you!
thank you bro
🎉❤
How can display or have a showMessageDialog respond to my input, however, i also want it to continuously accept input and showinputdialog again, a while loop until i put “stop”
great , tnx bro
thanks
How do you get rid of the focus on the buttons in JOptionPanes? that rectangular box around the text is very annoying, thanks.
For example you can create an array of JButtons instead of an array of Strings and you can use the setFocusable(false) method for each button. Finally, remember to pass null to the last parameter of the showOptionDialog.
💯👍
How did you make the sub button go rainbow when you mentioned subscriptions
awesome bro, thanks
nice
TQ
thanks bro
Hi, I deployed application in one server and trying to access application in another server(through diff machine) .What i observed is dialog box is showing in the same server where i deployed not in the testing server
What eclipse do you use? I tried to download it and it just gave me a lot to choose from and I don't know which is which.
just download the latest version
thank you
Beautiful!
Thanks!
At 11:42 how can we print that option on the terminal ???
where do you find the icons you use?
What is the size of that smile icon?
Drop a comment
Thanks man !
👽🐸
How can i custom font style of JOptionPane Title?
Yes I also want to know ?? Does anyone know ??
thankss
At 6:48 , instead of printing a integer on the terminal, how can we print the selected option like string " yes "
@BroCode
no this has never been attempted before. Good luck
Below int answer = JOptionPane.showConfirmDialog ,
you can use if else condition instead like this:
if (answer == 0) {
System.out.println("Yes");
} else if (answer == 1) {
System.out.println("No");
} else if (answer == 2) {
System.out.println("Cancel");
}
this can be done by using if else statement
Bro how do you get out of that while loop? I am stuck.
stop the java program from your ide
Nice, bro?
how do u get small icons i can not find them anywhere
Bro!
How did you get this icon? I tried to do the same thing on Intellij, but the icon doesn't show up
you need to copy paste the icon folder into your intellij source folder
Try this:
ImageIcon icon = new ImageIcon(myClassName.class.getResource("/smiley.png"));
eclipse: u r awesome!
bro: no
eclipse: :(
me: he is not awesome. he is a lifesaviourforabeginnerprogrammerlikemeandiwatchhisvideosformyeducationpurposesanditisgreat
The image icon covered all my screen when I ran the code
Bro how to change the size ?
Bro
trolling my friends with this lol
Broooo
hey bro can I get code, just for academic purpose.
//whoops! I forgot to post the code lol
import javax.swing.ImageIcon;
import javax.swing.JOptionPane;
public class Main{
public static void main(String[] args) {
//JOptionPane = pop up a standard dialog box that prompts users for a value
// or informs them of something.
//JOptionPane.showMessageDialog(null, "This is a message dialog box", "title", JOptionPane.PLAIN_MESSAGE);
//JOptionPane.showMessageDialog(null, "Here is some useless info", "title", JOptionPane.INFORMATION_MESSAGE);
//JOptionPane.showMessageDialog(null, "really?", "title", JOptionPane.QUESTION_MESSAGE);
//JOptionPane.showMessageDialog(null, "Your computer has a VIRUS!", "title", JOptionPane.WARNING_MESSAGE);
//JOptionPane.showMessageDialog(null, "CALL TECH SUPPORT OR ELSE!", "title", JOptionPane.ERROR_MESSAGE);
//int answer = JOptionPane.showConfirmDialog(null, "bro, do you even code?");
//String name = JOptionPane.showInputDialog("What is your name?: ");
ImageIcon icon = new ImageIcon("smile.png");
String[] responses = {"No, you are!","thank you!","*blush*"};
int answer = JOptionPane.showOptionDialog(
null,
"You are the best! :D",
"Secret message",
JOptionPane.DEFAULT_OPTION,
0,
icon,
responses,
responses[0]);
System.out.println(answer);
}
}
@@BroCodez you forgor
too many options can be a pane
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
at myfirstprogram.Main.main
(why????)
Thank you
thanks bro
Thanks man !
random comment for youtube's algorithm