G
Gast
Gast
Hallo,
ich habe eine kleine Applikation geschrieben, in der ich eine JTextaArea erstellt und darin den Font geändert habe. Leider sehe ich keinen Erfolg.
Ich hoffe das mir hier jemand helfen kann.
hier mein Programm:
L-ectron-X hat den Beitrag hier her verschoben und Codetags hinzugefügt.
ich habe eine kleine Applikation geschrieben, in der ich eine JTextaArea erstellt und darin den Font geändert habe. Leider sehe ich keinen Erfolg.
Ich hoffe das mir hier jemand helfen kann.
hier mein Programm:
Code:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.JScrollPane;
public class JTextareaBeispiel
{
public static void main() {
JTextArea textArea;
JFrame.setDefaultLookAndFeelDecorated(true);
JFrame frame = new JFrame("JTextarea Demo");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
int anzahl=20;//Anzahl der Spieler
String [] arr=new String[anzahl];
textArea = new JTextArea(10, 20);
textArea.setFont(new Font("Curier New", Font.PLAIN, 12));
textArea.setEditable(false);
JScrollPane scrollPane = new JScrollPane(textArea);
frame.add(scrollPane, BorderLayout.CENTER);
String str = "";
for (int i=0; i < anzahl ;i++) {
str += "Zeile " + String.format("%2d", i) + "\n";
// arr[i] = "Zeile " + String.format("%2d", i);
textArea.setText(str);
// textArea.append(str + "\n");
}
//Display the window.
frame.pack();
frame.setVisible(true);
}// end of main()
}// end of JTextareaBeispiel
L-ectron-X hat den Beitrag hier her verschoben und Codetags hinzugefügt.