DefaultTableModel has a constructor
DefaultTableModel(Object[][] data, Object[] columnNames)
So just call that and pass null
as the first argument.
E.G.
DefaultTableModel rowLessModel = new DefaultTableModel(null,ArrayOfColumnNames);
Hope that helps