I have several input type="text" with the same name. 
<input type="text" name="fieldname">
<input type="text" name="fieldname">
<input type="text" name="fieldname">
Im trying to get the values inside those text fields.
They are in a form used to upload images,  that's why im using Collection <Part> 
Inside this loops, how can i get the values of those text fields? I missed a part of code
 for (Part part: mhyCollectionParts) {           
             String filename = mhyCollectionParts.getName();             
             if(filename.equalsIgnoreCase("fieldname")){
                 //then...??????                     
             }               
         }
 
     
    