与System.out.printf类似的JOptionPane.showMessageDialog

时间:2014-07-04 15:36:24

标签: java

我该怎样做JOptionPane.showMessageDialog就像System.out.printf

我尝试过类似的东西:

JOptionPane.showMessageDialog(null, "Your name is %s", name);

但我得到错误。

1 个答案:

答案 0 :(得分:2)

请参阅有关此方法的文档:http://docs.oracle.com/javase/7/docs/api/javax/swing/JOptionPane.html

但你在案件中可以做的是:

使用'+'连接字符串:

JOptionPane.showMessageDialog(null, "Your name is" + name);

或使用String.Format:

JOptionPane.showMessageDialog(null, String.format("Your name is %s",name));

假设name是一个String并且定义了一个值。