Marcella Spiropulos

Greenhorn
+ Follow
since Feb 02, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Marcella Spiropulos

Hey Folks,

I know this topic a little old, but I'm facing the same issue. I'll appreciate if someone could help me to understand this exception.

Best Regads,
Marcy
Hey folks,

I'm using IBM RSA (Eclipse) tool for development, and I'm a little curious do you know if there is any plugin to debug a Shell Script through RSA environment?

I'll appreciate any help on this ...

Best Regards,
Hi!!

I'm beginner in J2ME and I'm developing a small application that needs to read the registers stored in archive PDB. But I don't know how to do it ...
Someone could help me?

Regards,
Marcella Spiropulos
19 years ago
Hi,

I'm beginner on J2ME but I've been learning it to start a new project. I have to develop a small mobile application for palm (tungsten E2) to access a web service.
Seaching on google I found an example for this, but it uses KXML's and KSOAP's api. My doubt is ... there is another api to use?? What do you advice??

Regards,
Marcella Spiropulos
19 years ago
Hi Edisandro Bessa !

Thank you so much ... now I understand about 'static' modifier !!!

Regards,
Marcella Spiropulos
Hi!

I'm studying for scjp 1.4 and I don't understand what 'static' access modifier is (for methods and variables). I know it's a silly question, but I've already read the K&B chapter many times and this subject still difficult for me. Someone could help me?? Some easy examples?? Please ... this is important for me ....

Regards,
Marcella Spiropulos
Hi!

I don't know if you understood why the first output is 012345. The ideia of all examples are the same. Take a look at code:



FIRST STEP: in the first interaction we have the following setting:
==> i=0
==> at line 5 we compare if i is less than 3 (remember i is 0). The answer is true, then i = i+1 (i++) and go to the line 6.
==> then I going to print the j value until j=3!! At instruction do/while we first print the value of j (line 7), then we compare if j is less than 3(line 8), and after we increment j (j++).

Then the output for the first interaction is: j=0 j=1 j=2 j=3



SECOND STEP: in the second interaction we have the following setting:
==> i=1
==> at line 5 we compare if i is less than 3 (remember i is 1). The answer is true, then i = i+1 (i++) and go to the line 6.
==> then we print the j value (j=4). J is gratter than 3, then we increment j (j++) and came back to while(i++<3) at line 5.

Then the output for the second interaction is: j=4



LAST STEP: in the last interaction we have the following setting:
==> i=2
==> at line 5 we compare if i is less than 3 (remember i is 2). The answer is true, then i = i+1 (i++) and go to the line 6.
==> then we print the j value (j=5). J is gratter than 3, then we increment j (j++) and came back to while(i++<3) at line 5.

Then the output for the last interaction is: j=5



Now i=3, then while loop fails, the program ends and output is 01245!!!


Regards,
Marcella Spiropulos
Hi folks!

I need a little help ...
I'm working Java Studio Creator (2004Q2 - update 8), but mysterious things have been happening since last week. My problem is: I can't create a MySQL data Source in JSC!!! I already read tutorial available at Java Studio Creator website but nothing happens!
I did the follow:

1) Went to Server Navigation and right-click on Data Sources and choose Add Data Source.
2) For Server Type, I selected 'Add Server Type'.
3) Hit the New... button and choose the jar file (called mysql-connector-java-3.1.12-bin.jar).
4) For the Driver Class Name: com.mysql.jdbc.Driver.
5) For the URL template: jdbc:mysql://#HOSTNAME:3306/#DATABASE.

I've come back to dialog 'Add Data Source' and fill it with database information (database name, host name, ...) ... when I hit 'Test Connection' nothing happens!! I saw the log file and got this Error:

java.lang.NoClassDefFoundError: org/aspectj/runtime/reflect/Factory



I don't know how to fix this ... somebody can help me?

Regards,
Marcella Spiropulos
Hi,

I don't know if here it's the best place to post this doubt!
This problem happens because you are trying to log in database without password. Take a look at: http://dev.mysql.com/doc/refman/4.1/en/access-denied.html
Hello everyone,

I have installed the Java Studio Creator (version 2004Q2), but I'm having some problems to start the Sun Application Server 8.0. Everytime that I try starts the server a new window is opened asking for UserName/Password to access it.
I already tried to insert standard login: admin/admin, but the problem persists. I don't know what's happening!! I'll be very grateful if somebody could help me ..

Thanks,
Marcella Spiropulos