Well, after futzing around looking for missing configuration information, I gave up and re-installed. BING, now everything seems to be working as advertized....
It really depends on what area of j2ee you are interested in, j2ee is pretty large. Are you sure you don't just mean books on java in general...... Do you know...
hi im new here in the group. can any body help me on socket programming/ multithreading. i'm creating a program that accepts connection and data from a...
Thanks Adam, our lab adviser won't mind telling us how to do this. That's why i need your help. I'm having difficulty studying Java although I have a...
Hi everyone, I'm currently trying to write a Proxy Server so that I can filter/handle some content on webpages. Are there any books or articles that someone...
Hi. I am new to this group and am learning java script. I am trying to validate a text box, such that if a user types in a wrong value, along with showing an...
We are asked to study all kinsds of solitaire games. Then we'll choose one kind of solitaire game and apply it to the basic card game representation. This game...
Does anyone knows or could write a java application program about the game The Wish. The mechanics of the game is simple: -it uses 52 cards, -randomized piling...
... Hi, JavaScript and Java are not the same language. While some people here many understand JavaScript you would probably have better luck on a JavaScript...
... Each card would be a Object that hold information about the kind of card it is. Card[] cards = new Card[52]; Place Card objects into the array. ... There...
Hi, I think the following solution might help you. Since class1 and class2 are classes,don't specify any import statements as only packages can be imported.but...
I agree with Adam - try http://groups.yahoo.com/group/javascript_official/ - or do a Yahoo groups search, there are many other JavaScript groups. However, WRT...
Hi, the answer was not 100% correct. You only have to import classes that are NOT in the same package (or say folder). Since you have both classes in the same...
hi all Iam trying to install j2ee server in my win 98 system but i got the error like "set j2ee_home before running j2ee server". I have set already even i got...
yo ppl can anyone tell me how to access abstract classes from other classes? or if can tell me how to fix this code: for (int b = 0; b != Something.HOW.length;...
I really have no idea what you're trying to do here - i.e. with your direct references to array lengths and elements inside Something. They don't exist as...
thanx alot DAVE dude u really cleared up alotta things for me !!! appreciate it !!!!!!!! by the way .......they are static arrays however i juss realized that...
... anyone know have or know where i can find code ... mostly got 3 type for loops... for, while and do...while.... example: for(int i =0;i<10;i++){ ...
... anyone know have or know where i can find code ... mostly got 3 type for loops... for, while and do...while.... example: for(int i =0;i<10;i++){ code...
Hi Java gurus, Has anyone worked with JAVA and interfacing AS 400 ( DB 2 database ) I need to the difference how to use batch & interactive data connection...
Dear all I need some help on how to refresh an image. Basically I am loading a webcam image on the webserver and I want to refresh it maybe every 3sec.. I am...
hi all, i have an array str[] who's contents for ex: are str[0]=aaaa; str[1]=aabc; str[2]=aabd; str[3]=adcd; i need to write a function...which finds. such...
Hi, for ( int i = 0; i < str.length;i++) { if ( str[i].startsWith("aa") ) { System.out.println("gotcha suckker:"+str[i]); } } for the second one use...
Hi ravi, check out api documentation of jdk u r using. There are plenty of String manipulation methods. The methods startsWith()....and like will help you Hope...