Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.awt.BorderLayout;
import java.awt.Dimension;
import java.io.StringReader;

import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;

public class Main extends JPanel {
    private JEditorPane html;

    public Main() {
        setLayout(new BorderLayout());
        String text = "<html>one<br>two<br><a name =\"three\"></a>three<br>four<br>five<br>six<br>seven<br>eight<br>nine<br>ten</html>";
        StringReader reader = new StringReader(text);

        html = new JEditorPane();
        html.setContentType("text/html");

        try {
            html.read(reader, null);
        } catch (Exception e) {
            System.out.println(e);
        }

        JScrollPane scrollPane = new JScrollPane(html);
        scrollPane.setPreferredSize(new Dimension(400, 100));
        add(scrollPane);
        html.scrollToReference("three");

    }

    public static void main(String[] args) {
        JFrame frame = new JFrame("EditorPaneScroll");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.add(new Main());
        frame.pack();
        frame.setLocationByPlatform(true);
        frame.setVisible(true);
    }
}