Results 1 to 4 of 4
- 06-24-2012, 11:45 AM #1
Member
- Join Date
- Jun 2012
- Posts
- 5
- Rep Power
- 0
- 06-24-2012, 02:43 PM #2
Senior Member
- Join Date
- Jun 2007
- Location
- Bali, Indonesia
- Posts
- 697
- Rep Power
- 6
Re: How to read the contents of uploaded file?
There is a scripting elements called as declarations in JSP page that you can use to declare variables or methods. The declaration enclosed with a <%! .... %>. As an example you:
Note: using a scriptlets is considered as not a good practice when creating a JSP page. You'll need to separate between presentation and the logic of you page by combining a JSP page with a servlet.Java Code:<html> ... ... <%! public String say() { return "Hello there!"; } %> ... ... Hi, <%= say() %> ... </html>Website: Learn Java by Examples
- 06-25-2012, 08:19 AM #3
Member
- Join Date
- Jun 2012
- Posts
- 5
- Rep Power
- 0
Re: How to read the contents of uploaded file?
Actually I have already made my classes and projects separately and i want use those methods in a JSP page, how can i use that???
- 06-25-2012, 11:07 AM #4
Moderator
- Join Date
- Apr 2009
- Posts
- 10,484
- Rep Power
- 16
Re: How to read the contents of uploaded file?
You'll want to use them in a servlet which will then pass the information needed by the JSP to display.
The JSP shouldn't be doing the calling, it should (largely) just be getting view beans out of the request and using them to lay out the page.Please do not ask for code as refusal often offends.
Similar Threads
-
how to read a file and change its contents.
By mointariq in forum New To JavaReplies: 1Last Post: 04-30-2012, 07:19 PM -
Getting Inputstream of a uploaded file
By nn12 in forum New To JavaReplies: 0Last Post: 03-26-2011, 06:54 AM -
Read and Write depending on file contents
By paulhenderson in forum Java AppletsReplies: 3Last Post: 02-15-2010, 12:38 PM -
how to specify location of file to be uploaded?
By anthrax in forum New To JavaReplies: 11Last Post: 01-13-2010, 02:48 PM -
Read file from directory, update contents of the each file
By svpriyan in forum New To JavaReplies: 2Last Post: 05-11-2009, 10:07 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks