- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 5
- Posts with Downvotes
- 3
- Downvoting Members
- 4
6 Posted Topics
if you have an a code.. debug firts then see what is the problem..
public class Lecture implements Serializable { public String title; public String startTime; public String endTime; public String day; public boolean classEnabled; public Lecture(String title, String startTime, String endTime, String day, boolean enable){ this.title = title; this.startTime = startTime; this.endTime = endTime; this.day = day; this.classEnabled = enable; } Next, you …
you try to download an application.. to convert the exe file to jar..:)
I know 2 ways: 1. Parse XML file using some parsing API, get data from it, display the data with HTML markup - better do first 2 things (parsing & retrieving data) in servlet & forward data to JSP for display. 2. Apply XSLT on XML to generate HTML markup.
maybe try firts to debug your codes to see what is the problem.
The End.
ghincelino