Dear Sir,
Would you help me the problem below.
Environment : Java and JSP
Action : retrieve filename from file with Complicated Chinese
characters.
Sample file : A1-中文.jpg
Response :
1. OK for local Eclipse developing platform, the name of "中文"  can be
retrieved.
2. After deploying in GAE cloud, system sound having problem and skip
this file and no response.

Written code in JSP file :
----------
path_string = objFiles[i].toString();
index1 = path_string.lastIndexOf('-')+1;
index2 = path_string.indexOf('.');
file_name = path_string.substring(index1, index2)
<%= file_name%>
---------
---thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to