0

我使用 JEditorPane 在我的机器上显示一个 html 文件,这个 html 有一个名为“skip to main content”的链接,它将引导用户到同一页面的中间;但我希望它在对话框设置为可见的情况下自动滚动到页面中间,我尝试了 JEditorPane.scrollToReference(),它不起作用。

任何人都可以帮忙吗?

4

1 回答 1

4

在实现组件之前,您不能调用 scrollToReference() 方法。那就是对话框已被打包或可见。

最简单的方法是将 scrollToReference() 方法包装为 SwingUitilities.invokeLater。就像是:

import java.awt.*;
import java.awt.event.*;
import java.beans.*;
import javax.swing.*;
import java.io.*;
import java.net.*;

public class EditorPaneScroll extends JPanel 
{
    private JEditorPane html;

    public EditorPaneScroll()
    {
        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 );

        SwingUtilities.invokeLater(new Runnable()
        {
            public void run()
            {
                html.scrollToReference("three");
            }
        });
    }

    private static void createAndShowUI()
    {
        JFrame frame = new JFrame("EditorPaneScroll");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.add( new EditorPaneScroll() );
        frame.pack();
        frame.setLocationByPlatform( true );
        frame.setVisible( true );
    }

    public static void main(String[] args)
    {
        EventQueue.invokeLater(new Runnable()
        {
            public void run()
            {
                createAndShowUI();
            }
        });
    }
}
于 2013-05-31T03:44:58.417 回答