Re: The comparison between string and char.

2001-01-02 Thread Bhushan Bhangale
ROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, January 02, 2001 10:53 AM Subject: The comparison between string and char. > I am new to JSP. Who is going to help me? Thanks in advance. > I read some input from a text file and the first parameter is an int and > others are string

Re: The comparison between string and char.

2001-01-02 Thread Panos Konstantinidis
ages specification and > reference <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: The comparison between string and char. >Date: Tue, 2 Jan 2001 13:23:05 +0800 > >I am new to JSP. Who is going to help me? Thanks in advance. >I read some input from a text file and the fi

Re: The comparison between string and char.

2001-01-02 Thread Sachin S. Khanna
: Jean Chiang (¦¿²Q§g) <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, January 02, 2001 10:53 AM Subject: The comparison between string and char. > I am new to JSP. Who is going to help me? Thanks in advance. > I read some input from a text file and the first parameter is a

Re: The comparison between string and char.

2001-01-01 Thread Ramesh, Kesav
hey use the following code you wil get "yes" <% BufferedReader in = new BufferedReader( new InputStreamReader( yc.getInputStream())); String inputLine; if ( (inputLine.substring(0,1)).equals("1") ) { out.println("yes"); } else { out.

Re: The comparison between string and char.

2001-01-01 Thread tpazhanikumar
there is a class called types in sql package try out that bye - Original Message - From: Jean Chiang (¦¿²Q§g) <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, January 02, 2001 10:53 AM Subject: The comparison between string and char. > I am new to JSP. Who is g

Re: The comparison between string and char.

2001-01-01 Thread Kevin Duffey
ailing list about Java Server Pages specification and > reference [mailto:[EMAIL PROTECTED]]On Behalf Of Jean Chiang (¦¿²Q §g) > Sent: Monday, January 01, 2001 9:23 PM > To: [EMAIL PROTECTED] > Subject: The comparison between string and char. > > > I am new to JSP. Who is

Re: The comparison between string and char.

2001-01-01 Thread Xing guohong
Use equalsIgnoreCase method of String, instead of "==". - Original Message - From: "Jean Chiang (¦¿²Q§g)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, January 02, 2001 1:23 PM Subject: The comparison between string and char. > I am

The comparison between string and char.

2001-01-01 Thread Jean Chiang(江淑君)
I am new to JSP. Who is going to help me? Thanks in advance. I read some input from a text file and the first parameter is an int and others are string. I have to do different action according to the first parameter. A part of my source code is listed as follows: In this case, when my first param