Here you can find the source of scrollToVisible(JTable table, int rowIndex, int colIndex)
public static void scrollToVisible(JTable table, int rowIndex, int colIndex)
//package com.java2s; //License from project: Open Source License import java.awt.*; import javax.swing.*; public class Main { public static void scrollToVisible(JTable table, int rowIndex, int colIndex) { Rectangle rect = table.getCellRect(rowIndex, colIndex, true); table.scrollRectToVisible(rect); }//from w ww .j av a 2 s. c o m }