Search the web
Sign In
New User? Sign Up
Java_Official · Java SE . EE . ME . AJAX . Web services
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 30771 - 30800 of 32213   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
30771
For accessing files( any type of file format (pdf in this case) ) as a stream, you don't need external libraries you can use normal IO libraries to do that. ...
Srikanth Reddy Lankir...
ckanth99
Offline Send Email
Feb 1, 2008
4:10 pm
30772
Hi first thing u need to setup ur JAVA_HOME variable to jdk path than u also need to set ur classpath environment variable to ur jdk and tomcat path folder. ...
KrunaL Parvadiya
krunalcp
Offline Send Email
Feb 1, 2008
4:10 pm
30773
Will the proposed $44.6 billion acquisition be a marriage made in heaven or hell? And how will it affect Google? (ref: ...
java_developer
Offline
Feb 1, 2008
4:40 pm
30774
Hi dears! I have some questions about JTable: 1- how can set some columns of my table in editable mode and som uneditable? 2- how can I create in some columns...
noroozi_work
Offline Send Email
Feb 1, 2008
7:16 pm
30775
I think your words are misleading I am not seeing any threat to the group Because Java is unique, and needed by all. Cheers Mahesh Bhat...
Mahesh Bhat
bhatmahesht
Offline Send Email
Feb 4, 2008
7:01 pm
30776
I'm in dilemma I should select an IDE jbuilder 2007 or Myeclipse. Idon't know which of them is better. If u know , do me a favour & tell me I will appreciate...
amany tawab
muny_tawab
Offline Send Email
Feb 4, 2008
7:01 pm
30777
I believe is a single if statement but it seems to always returns false. here is the method. public boolean CompWords() { if (this.LastName == this.City_Name) ...
Oscar Pena
troya_1970
Offline Send Email
Feb 4, 2008
7:02 pm
30778
Hi, I installed JDK 1.6 and Tomcat server. But when I use this code it shows the error import javax.servlet; It says package not available. How can I resolve...
Mahesh Bhat
bhatmahesht
Offline Send Email
Feb 4, 2008
7:02 pm
30779
hello! thanks for your answer. can you tell me i must use which class of IO library? i do this work at the first level and i can't read pdf file in stream. do...
zahra noroozi
noroozi_work
Offline Send Email
Feb 4, 2008
7:03 pm
30780
hello dear if anyone plz tell me how to make application for cell phone [like nokia] in java. i'll b very very to greatful. [Non-text portions of this message...
k6d6b69
Offline Send Email
Feb 5, 2008
5:36 pm
30781
When comparing objects, you should ALWAYS use equals() method instead of "= =" because the latter one compares not the object´s attributes but their reference...
Waldir Pires Jr
wpjr2
Offline Send Email
Feb 5, 2008
5:36 pm
30782
Hi the javax.servlet will be available in servlets-api.jar... it will be present in tomcat5.5/common/lib/servlet-api.jar for tomcat 5.5 give classpath to it...
rajesh selvanayagam
rajeshs_vec
Offline Send Email
Feb 5, 2008
5:36 pm
30783
May be u need to set the CLASSPATH varibale pointing to that servlet.jar file/servlet_api.jar file. Regards Jyothi Mahesh Bhat <bhatmahesht@...>...
Jyothi SUN
sunjyothi
Offline Send Email
Feb 5, 2008
5:37 pm
30784
Amany, Select Eclipse, it's very hot in market as well as you can develop any Language by adding respectice plug-in And there is lot of support for it! ...
Tandon, Rishi
rishitandon123
Offline Send Email
Feb 5, 2008
5:37 pm
30785
Read this carefully:- if ( string1 == string2 ) { System.out.println ("Match found"); } This code will only evaluate to true if string1 and string2 are the...
Tandon, Rishi
rishitandon123
Offline Send Email
Feb 5, 2008
5:37 pm
30786
Hope this will help:- http://javaboutique.internet.com/articles/ITJ/qanda/q17.html Rishi ... From: Mahesh Bhat <bhatmahesht@...> To:...
Tandon, Rishi
rishitandon123
Offline Send Email
Feb 5, 2008
5:37 pm
30787
hi friends can anybody provide me low level packet handling codes in C .... and also model programs for TCP implementation ,ICMP implementation, UDP ...
divya v
divya_veer
Offline Send Email
Feb 5, 2008
5:37 pm
30788
Oscar, This is a common mistake. if (this.LastName == this.City_Name) checks to see if the two String references point to the same String object. I'm guessing...
Java Guy
mmjavaguy
Offline Send Email
Feb 5, 2008
5:37 pm
30789
Use FileInputStream, and FileOutputStream. ... [Non-text portions of this message have been removed]...
Srikanth Reddy Lankir...
ckanth99
Offline Send Email
Feb 5, 2008
5:37 pm
30790
before compiling the program, do set the class path. set classpath=.;C:\Program Files\Apache Software Foundation\Tomcat 5.5\common\lib\servlet-api.jar This...
Srikanth Reddy Lankir...
ckanth99
Offline Send Email
Feb 5, 2008
5:37 pm
30791
You can't compare strings that way. == will compare for referential equality. Change it to this.LastName.equals(this.City_Name). This 'equals' method checks...
Srikanth Reddy Lankir...
ckanth99
Offline Send Email
Feb 5, 2008
5:37 pm
30792
Hi Pena, You should not use "==" for equal check of String. You needs to use ".equal" methods for String equal check. Try this: public boolean CompWords() { ...
vikash kontia
vikash_kontia
Offline Send Email
Feb 5, 2008
5:37 pm
30793
As LastName and City_Name Strings are Strings, try using "equals" instead of "==". Like this: public boolean CompWords() { if...
Rodrigo Coin Curvo
rodrigoccurvo
Offline Send Email
Feb 5, 2008
5:37 pm
30794
Hi , use > this.LastName.equalIgnoreCase(this.City_Name) instead of ' == ' thanks Amit Oscar Pena <troya_1970@...> wrote:...
Amit Ajmani
amit_ajmani
Offline Send Email
Feb 5, 2008
5:37 pm
30795
u to have to set the classpath environment variable to the directory that contains servlet-api.jar for servlets and jsp-api.jar for jsp. since u r using tomcat...
Srikanth M R
csri_1986
Offline Send Email
Feb 5, 2008
5:37 pm
30796
Strings are objects. so you cannot compare them with ==. you must use this.LastName.equals(this.City_Name) in if condition. ... From: Oscar Pena...
hasan
hasanbacak
Offline Send Email
Feb 5, 2008
5:37 pm
30797
My opinion: Acquiring Yahoo! will result in one of two: 1- One of the companies will fall back, Microsoft or Yahoo 2- The Internet will become a nicer place...
Mohd Abu Ajamieh
mohajami1984
Offline Send Email
Feb 5, 2008
5:37 pm
30798
Hi, Use if(this.LastName.equals(this.ChityName)) The == operator is only checking if two objects are the same and not if the content is the same. The equals...
schrob_tka
Offline Send Email
Feb 5, 2008
5:37 pm
30799
Hi, The package javax.servlet is not included in the JDK 1.6. You have to use the Java Enterprise Edition SDK instead. Regards Robert...
schrob_tka
Offline Send Email
Feb 5, 2008
5:37 pm
30800
my opinion is go for Myeclipse. ... Idon't know which of them is better. If u know , do me a favour & tell me I will appreciate that & consider ur opinion ......
vedhakalam
Offline
Feb 5, 2008
5:37 pm
Messages 30771 - 30800 of 32213   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help