Java tutorial
//package com.java2s; import javax.swing.*; import java.awt.*; public class Main { public static void scroll(JTable table, int row) { table.scrollRectToVisible(new Rectangle(table.getCellRect(row, 0, true))); } }