Hilfe Bitte

Beispiel zum HTML anzeigen:
Code:
package showHTML;

import java.awt.BorderLayout;

import javax.swing.JEditorPane;
import javax.swing.JFrame;

public class HTMLFromText extends JFrame {

    public HTMLFromText() {
        String html = "<html><head></head><body><font color=\"#ff0000\">Test-Text</font></body></html>";
        JEditorPane jEP = new JEditorPane("text/html", html);
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        this.getContentPane().setLayout(new BorderLayout());
        this.getContentPane().add(jEP, BorderLayout.CENTER);

        this.setSize(400, 200);

        this.show();
    }

    public static void main(String[] args) {
        new HTMLFromText();
    }
}
Gleich bei den ersten 2 Ergebnissen der Google-Suche wirst Du mit der Nase auf's JEditorPane gestoßen. Und wenn Du Dir in der API-Referenz einmal die Konstruktoren anschaust, ist das gar nicht schwer.
 
Zurück