yue zhang

Greenhorn
+ Follow
since May 15, 2006
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 yue zhang

if(variable'value in range -127- 127){
put into the constant pool, and the other referece call share the value;
} else {
variable's value will malloc the memory;
}

16 years ago
CSP-User-Info: AccountID=250387,Login%u0020Name=sampath,UserId=79
=========
1. use String.split(",") split the String to a String array
2. then conversion the String array to a HashMap(key, value),(you need write a method by yourself.)
3. use HashMap's get(Object key) method get what you want value

4. then you can reuse this method in other class
16 years ago
ab is a String, but A.main() need a String array
16 years ago
try this :
<%
response.setHeader("Pragma","No-cache");
response.setHeader("Cache-Control","no-cache");
response.setDateHeader("Expires", 0);
%>
may be can help you
17 years ago
JSP