Posts

Showing posts from February, 2018

How to encode HTML in JAVA (Remove HTML from your text)

Here is the following code :- --------------------------------------------------------------------------  private String htmlEncode(final String string) {    String value="";    try{    byte ptext[] = string.getBytes("ISO-8859-1");     value = new String(ptext,"UTF-8");     value=value.replaceAll("\\p{C}", "?");    }catch(Exception e)    {    Util.AppendExceptionToLog(e);    }    return value;     } -------------------------------------------------------------------------- Thanks Pavan Dhokne 8888865193

How to resolve session timeout issue in JAVA

How to fixed Session timeout issue  :-     Pls follow the below details............................. SessionTimeOut.jsp --------------------------------- <%@page import="com.ecw.security.DataValidation"%> <%@page import="com.ecw.components.PerformanceHelper"%> <% String sessionValueinSeconds =  PerformanceHelper.checkItemkeyCache(null, "sessionTimeOut"); %> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <body> <script src="../../script/newui/js/jquery-1.10.2.min.js"></script> <script>     $(document).ready(function()            {     /* session Timeout code End Pavan */     var timer = null;     var secondsBeforeExpire='<%=DataValidation.escapeStringForJavaScript(sessionValueinSeconds)%>';     if(secondsBeforeExpire!="")     {     v...