Feybian Yip

Greenhorn
+ Follow
since Jul 16, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Feybian Yip

I am seeking the meaning of the system classes in Java. As there is a flag '-esa' that this will enable system assertions, which will allow the assertions assigned in the system classes.
And also for the flag '-ea' which stated that it allow all the assertions for all package and the system classes which do not have a class loader. I would like to know which system classes has class loader and which has not. Is there any information provided by Sun? As I search for it a few hrs but still get nothing.
Thanks~
I am seeking the meaning of the system classes in Java. As there is a flag '-esa' that this will enable system assertions, which will allow the assertions assigned in the system classes.
And also for the flag '-ea' which stated that it allow all the assertions for all package and the system classes which do not have a class loader. I would like to know which system classes has class loader and which has not. Is there any information provided by Sun? As I search for it a few hrs but still get nothing.
Thanks~
21 years ago
Hi,
I am new in jsp. I want to ask any diff btw Request and sRequest in receiving the form-passing parameter. Since some of the chinese character in unicode 8 cannot be displayed in using sRequest but can in using request to get the form-pass value.
My code is as follow:
...
<%@ page contentType="text/html;charset=utf-8"%>
<%@ page import="sRequest" %>
...
<%
...
sRequest sReq = new sRequest(request);
String s_PageNum1 = sReq.getParameter("vDTT_PageNum");
String s_PageNum2 = request.getParameter("vDTT_PageNum");
...
%>
22 years ago
Hi,
I want to ask the main difference btw the method
1. <%@ include file="page1.jsp" %>
2. <jsp:include page="page1.jsp" flush="true" />
?
thx~
22 years ago
Hi,
I want to ask is there any method which can keep a variable among different jsp pages which are virtual included within a page.
Or store in session is the only method to do so?
Fey
22 years ago