Hello;
As I told you I reused the findscu code for a quick solution the first week I was working with DICOM and the library. After a few weeks I am working in a smarter solution.
What I did:
I set a new attribute for the findscu class --> List<Attributes> dataBack = new ArrayList<Attributes>();
and I added a new element to the list each with each query response, this is in the method --> public void onDimseRSP(Association as, Attributes cmd,Attributes data) where is defined what to do with the RSP, the data attributes are what you are looking for.
Again, this is by far not an optimal solution is "quite easy" to implement something better.