... I have a theory (which I am sure someone here will hate :P), but inside every great C programmer is a OO programmer waiting to jump out. Serriously, there...
Hello, In Linux you can use "cron" with java and you don't have to forget CLASSPATH. Ciao ... ___________________________________________________ Yahoo!...
the problem here is though i m getting right values from databut the authentication(String username2,String password2) is always returning false value i passed...
Hi, you haven't mentioned the database that you are using so I can only guess. Some databases fill up the empty space with spaces. Say you have defined the ...
Hi, you can define which page to show up in the web.xml of your application. You can define a page for 404 and for 500 and so on. wbr Andreas ... From:...
Get the New Java Desktop System - at a 50% Discount Trade in your Windows or Linux desktop, and get Java Desktop System at just $50 per desktop (U.S. pricing,...
Hi! Hopefully this will be a simple one! Basically, when the user types in amount there will be a triangle formed as follows with x determining the width of...
Added this to the code and it seemed to work. I know it's rubbish, but I'm happy! for (count3 = x; z <= count3; count3--) c.out.print(" ") ; z = z - 1 ;...
Remove rs.next() before the while loop. Anyway rs.next() is there in while loop condition, it will work. Instead of checking with while loop you can do the...
friends i want to recognize the words wich i have typed in my editor. to provide them proper coloring and velidation i can find characters by keytyped function...
Dear Frens, I am beginer in JAVA & during JDBC project, i got a problem, that is how to select complete column in array.. I m making Chat messenger just like...
How can I parse an XML from String? I've used following code to parse XML file. ... DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); ...
just look at the Document, DocumentListener and DocumentEvent interfaces... ... From: letbwithme [mailto:letbwithme_tin@...] Sent: Saturday, April 03,...
hi guys im running this code and im having trouble understanding the error the complier is giving me ...........can u please tell me how to fix it? for (int...
Try implementing KeyListener, when a key is pressed put the TextField through a StringTokenizer and then have a while loop that goes through the TextField...
Hey kids. I know this isnt the right space for this, but i know there are some real hardware\software gurus here who might be able to help me alot with just a...
dear all, i how are you? i need the whole "stop words" and also is there any componenet in java that counts how many for example " dog" is in the string. i...
Hi: The problem is that "char" is not a class, is a primitive type, so you can't call methods on a "char" variable, if you want to convert a char into an int,...
Jean Honorio Carrillo
jhonorio@...
Apr 4, 2004 11:18 pm
14618
Check out StringTokenizer object. that's all u need. maryam <comp_maryam@...> wrote:dear all, i how are you? i need the whole "stop words" and also is...
Hi, if have called import java.lang.* at the begining then try int index=Character.getnumericvalue(alpha); I hope this will solve yr problem...PLz do let me...
Hi, well I amnot an experienced java programmer but hopefully this solution will solve yr problem. If u have included java.lang library at the begining. then...
Hi, well I amnot an experienced java programmer but hopefully this solution will solve yr problem. If u have included java.lang library at the begining. then...
Hey, i have to write a method called bucketSort that accepts an array and sorts it. Does anyone know how to do this. Also if i have something like for { for { ...
... the type char has no functions, as it's a fundamental data type. What you want to do is use wrapper class's function Character.getNumericValue(alpha)...
Hi, I am writing a simple smtp client in using both Sockets and JavaMail seperately, the problem is that I need the address of a smtp server that allows to...
Have u checked what u r getting in string u1 and p1 and the second thing is that why u r using rs.next() two times??? rs.next(); ... ... .. } Don't fetch all...
hi I need to write a code for getting an XML file... and get the elements attribs and values of all elements. the program shud work for ne general file. can...