How to get the attributes of the shapeFile?
ShapefileFeatureTable shapefileFeatureTable = new ShapefileFeatureTable(selectedFile.getAbsolutePath());
FeatureLayer featureLayer = new FeatureLayer(shapefileFeatureTable);
From featureLayer I only able to get the fields only not attribute values.
There is anyway to extract the features from the featureLayer? If any, I could get the attributes from the feature itself.