2012-08-25 60 views

回答

14

很可能有十多種方法可以做到這一點,但我能想到的最簡單的是

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); 
+3

@DavidKroukamp在Java中愛HTML,只是希望它有更好的CSS支持 – MadProgrammer

+0

你有沒有看過[用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) –

+0

這和using/n有區別嗎?還是個人喜好? ...忽視這篇文章... – jjd712

18

您可以使用「電源\ n'如下:

JOptionPane.showMessageDialog(null, "Hello\nworld"); 
+0

-1他希望從用戶那裏獲得輸入文本(輸入對話框看起來像文本區域),而不是向用戶輸出多行文本。 – trinity420

相關問題