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. ...
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. ...
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...
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...
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) ...
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...
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...
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...
When comparing objects, you should ALWAYS use equals() method instead of "= =" because the latter one compares not the object´s attributes but their reference...
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...
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! ...
Read this carefully:- if ( string1 == string2 ) { System.out.println ("Match found"); } This code will only evaluate to true if string1 and string2 are the...
hi friends can anybody provide me low level packet handling codes in C .... and also model programs for TCP implementation ,ICMP implementation, UDP ...
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...
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...
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...
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() { ...
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...
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...
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...
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 ......