For example I have a Table that I want to get text that\'s in the first column and store it in an ArrayList.
ArrayList
You need to go through the JTable's TableModel, accessible through the getModel() method. That has all the information you need.
JTable
getModel()