Tabstop \t in JDialog/JOptionPane

marlone_de

Grünschnabel
Hallo

Ist es möglich Tabstops (\n) in ein JOptionPane einzufügen? Ein Zeilenumbruch geht ohne Probleme, aber ein Tabstop nicht. Ohne Tabstops sieht der Text aber nicht so schön geordnet aus. Kann mir da jemand helfen?

Code:
JOptionPane optionPane = new JOptionPane();
JOptionPane.showMessageDialog(optionPane,
   "Name: \tHerbert\nNachname: \tMüller\nWohnort: \tNeustadt",
   "Namen",
   JOptionPane.INFORMATION_MESSAGE);
 
Hallo Marlone,

HTML machts möglich!

Java:
import javax.swing.JOptionPane;

public class TabInOptionpaneExample {

	private static String message =
		"<HTML><H2 ALIGN=\"CENTER\" COLOR=\"RED\">Ihre Daten:</H2><TABLE BORDER=\"1\">" +
		"<TR><TD>Name:</TD><TD>Herbert</TD></TR>" +
		"<TR><TD>Nachname:</TD><TD>Müller</TD></TR>" +
		"<TR><TD>Wohnort:</TD><TD>Neustadt</TD></TR></TABLE></HTML>";
	
	public static void main(String[] args) {
		JOptionPane.showMessageDialog(null,
				message,
				"Namen", JOptionPane.INFORMATION_MESSAGE);
	}
}

Vg Erdal
 
Zurück