Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
make_toolkit.ipl
Antharix
Hello,
A java source code under the customer_src/src folder fails to compile while executing the make_toolkit.ipl. The following is the error message thrown:
cannot resolve symbol
[javac] symbol : method split (java.lang.String)
[javac] location: class java.lang.String
[javac] usrnames = strUsrNames.split("___");
The source file when compiled from the command prompt compiles ok. The version of Java installed is
java version "1.4.2_08"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_08-b03)
Java HotSpot(TM) Client VM (build 1.4.2_08-b03, mixed mode)
please advice.
Thanks in advance
Find more posts tagged with
Comments
stefanmaier
Hi,
what TS version, service pachs and OS are you using?
Did you install any java compiler manually?
As far as I know, java version 1.4.2_05-b04 is shipped with TS (? only for TS6.5SP1@Win2003 ?)
Stefan
Antharix
The Environment is
Solaris 9, Teamsite 6.1
total.JPG
iw_store
Hi,
Attach The Code so that people can figure it out.
Antharix
The java source file (class file) has a method getListArr wherein a string for information is split into an array. The code is as follows
public String [] getListArr(String str)
{
String arr[];
arr = str.split(":");
return arr;
}
As simple
Bill Klish
Unfortunately, Java version 1.3.x is shipped with TeamSite 6.1, so the split method is not available. You will need to tokenize the string into the array yourself.
-Bill
Edited by bk99nd on 09/26/05 09:38 AM (server time).