how to write uploadphoto in the insert update delete using
struts? write code struts and jsp jdbc



how to write uploadphoto in the insert update delete using struts? write code struts and j..

Answer / k.v.s.ravindrareddy

****************In jsp*********************

<form name="fileupload" enctype="multipart/form-data"
method="post"
action="/photos/fileuploadresult">
<tr>
<td >Photo 1</td>
<td ><input type="file" name="uploads[0]" /></td>
</tr>
<tr>
<td >Photo 2</td>
<td ><input type="file" name="uploads[1]" /></td>
</tr>
<tr>
<td>
<input type='submit' name="submit" value="Submit">
</td>
<tr>
</form>
*************** in struts-config.xml*************

<action path="/photos/fileuploadresult"
type="com.uploads.actions.FileUploadAction" name="PhotoUpload"
scope="request" >
<forward name="success" path="/photos/fileuploadresult.jsp" />
</action>


<form-bean name="PhotoUpload"
type="com.uploads.forms.FileUploadForm">
</form-bean>

***************in FileUploadForm.java***************

public class FileUploadForm extends ActionForm {

private List formFiles = new ArrayList();

public List getUploads() { return this.formFiles; }

public void setUploads(int iIndex, FormFile formFile){
this.formFiles.add(formFile);
}

}

***************In execute method of
FileUploadAction.java***************

FileUploadForm uploadForm=(FileUploadForm)form;
List myFiles =(List) uploadForm.getUploads();
for(int i=0;i<myFiles.size();i++){
if(myFiles.get(i)!=null){
FormFile myFile =(FormFile)myFiles.get(i) ;
/*process ur file......*/
}
}

Is This Answer Correct ?    3 Yes 1 No

Post New Answer

More Struts Interview Questions

What is the purpose of @conversion annotation annotation?

0 Answers  


Explain the necessity of empty tag?

0 Answers  


Explain about the validation steps which have to be carried during validation of client-side address?

0 Answers  


what is the difference between page and pageContext implicit variables

2 Answers   Yash Technologies,


Can we have different controllers in one struts app?

7 Answers   Accenture,






What is difference between spring and struts?

0 Answers  


Which design pattern is implemented by Struts2 interceptors?

0 Answers  


Why should we go for struts framework?

5 Answers   Accenture,


Does struts include its own unit tests?

0 Answers  


Can you explain the directory structure for a struts folder in brief ?

0 Answers  


What is the DynaActionForm? How we implement the dynaactionform ? can u please tell me the way to implement? in understandable way?

8 Answers   JBA Infotech,


What are struts in java?

0 Answers  


Categories