При выводе текста, скруллбар перекатывается в конец текста, как сделать ,чтобы ничего не изменялось? Точнее, чтобы показывал именно начало текста?
JEditorPane jEditorPane = new JEditorPane();
jEditorPane.setContentType("text/html");
jEditorPane.setFont(new Font("Arial", Font.PLAIN, 14));
JEditorPane jEditorPane1 = new JEditorPane();
jEditorPane1.setContentType("text/html");
jEditorPane1.setFont(new Font("Arial", Font.PLAIN, 14));
jEditorPane.setText(text);
JScrollPane jScrollPane = new JScrollPane(jEditorPane);
jScrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
jScrollPane.setPreferredSize(new Dimension(580, 620));
JScrollPane jScrollPane1 = new JScrollPane(jEditorPane1);
jScrollPane1.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
jScrollPane1.setPreferredSize(new Dimension(580, 620));
jPanelStart.add(jScrollPane);
jPanelEnd.add(jScrollPane1);