为什么joptionpane不支持\ t?

时间:2019-02-21 07:15:55

标签: java tabs joptionpane

所以我的问题很简单,为什么JOptionPane不允许您使用/不支持“ \ t”?但是是否允许您使用/支持“ \ n”?

我知道如何通过使用HTML或jTextArea来解决此问题...但是那些方法添加了不必要的代码,那么为什么Oracle不在JOptionPane中不添加对“ \ t”的支持以帮助保持代码简单?

例如...

JOptionPane.showMessageDialog(null,"This is the first line" + "\n" + "This is the second line" + "\t" + "< there should be a tab here");

产生了这个...

enter image description here

这不是应该发生的事情,因为我正确放置了制表符。那为什么会发生呢?

0 个答案:

没有答案