HOME HTML Javascript Display file_exists Thumbnail creation from image stream javascript clipboard Turn Monitor Off text string copy session.setAttribute session.getAttribute session SC_MONITORPOWER remark Monitor Power JSP session control JSP Optimization JSP Image Processing Bitmap java.util include file Image Scaling declaration dead code Canvas Bitmap to Jpeg Conversion

JAVA/JSP ( 1 / 1 )

How to resize image ?   (created at Jun 03, 2009)   173  

Here's the simple example can resizing source image:

How to set and get sessions on JSP code ?   (created at Oct 27, 2008)   160  

Here's the simple example to set and put sessions.save_my_name,jsp<%   String name = request.getParameter( "username" );   session.setAttribute( "theName", name );%>Continuesave_my_n...

How to add a declaration on JSP code ?   (created at Oct 27, 2008)   104  

If you have developed C or C++ program, you may know below examples.// printf( "a.out");/*  printf( "b.out");*/Above code have no bug, but no code will be compiled, because it's all declarations.In JSP, you can make declarations as well. In some docum...

How to include file in JSP ?   (created at Oct 27, 2008)   112  

Just like ASP, or PHP, JSP is also allow to include for programmer by include function.Here's the simple example.Going to include hello.jsp...
<%@ include file="hello.jsp" %>

How to print out text strings on HTML directly ?   (created at Oct 27, 2008)   127  

In JSP, you can print out text strings by out.println(). Here's the example. <%   

Clipboard copy function working   (created at Oct 17, 2008)   183  

When copying trackback address or shortcut url on the articles, clipboard function is really useful.But there are some compatibility issue in browsers.I checked below function is working on Microsoft Internet Explorer. For supporting Firefox, you need to f...