- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
5 Posted Topics
Java profiler, Can tell you where is exact problem. Find out good application monitoring tools, where and when application memory leak.
Problem with special characters, you have to remove special and insert ISO-8859-1 format characters [QUOTE]" = " < = <[/QUOTE] like make a method and put all possible special character which need to replace [CODE]<%! public String convSpecialChar(String htmlString) { htmlString = htmlString.replaceAll("\\<.*?\\>", ""); htmlString = htmlString.replaceAll("\r", "<br/>"); htmlString = …
Every thing looks like perfect here in this code. I would suggest you to use try catch block while inserting or with any database transaction. Problem can come any where may be in your database, if not null field can left blank. This query failed easily. ///// stmt=conn.createStatement(); done ?? …
Deleting file JSP code <% File f=new File("c:\\imagesFolder\\pig.jpg"); f.delete(); %> In linux machine you have to use different separator Search platform Independent separator for operating system
The End.
rockonjava