我需要一個文本彈出像你得到JOptionPane.showInputDialog(null, "Text");
只是多行,像一個...Java:使用JOptionPane.showInputDialog的多行文本(null,「Text」);
I'm new to java.
I have no background in programming.
I could use some help
我將如何做到這一點?
我需要一個文本彈出像你得到JOptionPane.showInputDialog(null, "Text");
只是多行,像一個...Java:使用JOptionPane.showInputDialog的多行文本(null,「Text」);
I'm new to java.
I have no background in programming.
I could use some help
我將如何做到這一點?
很可能有十多種方法可以做到這一點,但我能想到的最簡單的是
JOptionPane.showMessageDialog(null, "<html>I'm new to java.<br>I have no background in programming.<br>I could use some help Thanks!</html>");
另一種方法來證明的JOptionPane
JTextArea msg = new JTextArea("This is a really silly example of what can be achieved with a JOptionPane, but this is going to excese for what you have asked for");
msg.setLineWrap(true);
msg.setWrapStyleWord(true);
JScrollPane scrollPane = new JScrollPane(msg);
JOptionPane.showMessageDialog(null, scrollPane);
@DavidKroukamp在Java中愛HTML,只是希望它有更好的CSS支持 – MadProgrammer
你有沒有看過[用CSS去皮膚JavaFX應用程序](http://docs.oracle.com/javafx/2/css_tutorial/jfxpub-css_tutorial.htm ),你可以[在JavaFX中使用CSS的樣式佈局](http://docs.oracle.com/javafx/2/layout/style_css.htm) –
這和using/n有區別嗎?還是個人喜好? ...忽視這篇文章... – jjd712
您可以使用「電源\ n'如下:
JOptionPane.showMessageDialog(null, "Hello\nworld");
-1他希望從用戶那裏獲得輸入文本(輸入對話框看起來像文本區域),而不是向用戶輸出多行文本。 – trinity420
另請參見['JOptionPaneTest'](http://stackoverflow.com/a/3002830/230513)。 – trashgod