[java ee programming] j2me cdc app

2009-07-26 Thread Erdal KAYA
Hi I wrote a program using cdc for pda but it didnt run in ASUS PDA P526 windows mobile 5.0 I want to use cdc but I dont think using cldc but it doesnt work Could you help me? thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[java ee programming] Re: need help in J2ME

2009-07-26 Thread Evans
Been years since I last wrote a JavaME application and didn't have any need to use a database. That said, see if this helps http://www.coderanch.com/t/230853/Java-Micro-Edition/Mobile/List-Database-J-ME -- Evans - Original Message - From: Mohamed Ali To: Java EE (J2EE) Programmi

[java ee programming] need help in J2ME

2009-07-26 Thread Mohamed Ali
i use Record Store in J2ME to store data but it is very limited any body know any way to use some thing like Database in J2me -- لا اله الا الله We can do that. Mohamed Ali Mohamed Faculty of Com&Inf. Information system Dept. --~--~-~--~~~---~--~~ You received th

[java ee programming] JavaOne 2009 hands-on labs are available for public access

2009-07-26 Thread Sang Shin
Just in case you are not aware, the JavaOne 2009 hands-on labs are available in SDN for public access http://developers.sun.com/learning/javaoneonline/j1labs2009.jsp?track=1&yr=2009 Please feel free to let people know about this. Thanks. -Sang Shin -- -

[java ee programming] Re: overriding

2009-07-26 Thread ali googerdi
It's because you didn't define the ass method in Animal class but you have define eat in both classes. On Jul 26, 4:29 pm, ANUJ KUMAR wrote: > class TestAnimals { > public static void main (String [] args) { > Animal a = new Animal(); > Animal b = new Horse(); //Animal ref, but a Horse object >

[java ee programming] Re: overriding

2009-07-26 Thread zarni myo
I think u need modifier for anuj() method. On Jul 26, 8:29 pm, ANUJ KUMAR wrote: > class TestAnimals { > public static void main (String [] args) { > Animal a = new Animal(); > Animal b = new Horse(); //Animal ref, but a Horse object > a.eat(); // Runs the Animal version of eat() > b.eat(); // R

[java ee programming] overriding

2009-07-26 Thread ANUJ KUMAR
class TestAnimals { public static void main (String [] args) { Animal a = new Animal(); Animal b = new Horse(); //Animal ref, but a Horse object a.eat(); // Runs the Animal version of eat() b.eat(); // Runs the Horse version of eat() a.anuj(); b.anuj(); b.ass();//*WHY DOES IT GIVE A COMPILER ERROR

[java ee programming] Servlet Basics Homework

2009-07-26 Thread Basit Mahmood
Hi to all, Hope everyone is fine. I am new to this course and i have a problem. Actually what tha homework says that modify Hello2 or create a new project by copying Hello2 project.I created a new project and add two servlet files similar to Hello2 i.e, GreetingServlet and ResponseServl

[java ee programming] File Upload

2009-07-26 Thread rasesh mori
Hi, I can upload a file using apache commons api. But what if I want to upload many files residing in a folder. Is there any way to upload all files using only one file element or I have to use as many file element as there are files. Regards, Rasesh --~--~-~--~~~