JScrollPane scroll=new JscrollPane(new JEditorPane());
toolTip.getContentPane().add(scroll);
toolTip.pack();
//以下代码可以让scroll滚动到top顶端。
SwingUtilities.invokeLater(new Runnable(){public void run()
{
scroll.getVerticalScrollBar().setValue(0);
}
});