Hi all,

I have the following codes:

// ************************************************************
string retStr = new String("");
String Str1 = new String("<HTML>FLYING TO THE MOON</HTML>")
int iret = 0;
iret = isBot(Str1,iret,retStr);
System.out.print(retStr);

Public int isBot(String Str1,int iret,String retStr)
{
    ......
    retStr = new String("abc");        or      retStr = "abc";
    iret = 100;
    return iret;
}
// ************************************************************

I can not get the values "iret = 100" & "retStr = 'abc' "
and java does not support &iret &retStr
What can I do ?
Pls help me ...

AidyZhang 2k/1/12

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to