Here you can find the source of scrollToTop(JEditorPane editor)
public static void scrollToTop(JEditorPane editor)
//package com.java2s; //License from project: Apache License import javax.swing.*; public class Main { public static void scrollToTop(JScrollPane scrollPane) { final JScrollBar verticalScrollBar = scrollPane.getVerticalScrollBar(); verticalScrollBar.setValue(verticalScrollBar.getMinimum()); }//from w w w .j a va 2 s. c o m public static void scrollToTop(JEditorPane editor) { editor.setSelectionStart(0); editor.setSelectionEnd(0); } }