jess Chiu

Greenhorn
+ Follow
since Jan 29, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by jess Chiu

hello all: I recently pass SCWCD with very good mark, and I aslo hold a degree from very good University a few years ago, the only problem is my work experience is out of date, fro I am working in other area. I am in Australia.

Anyone can give practical advise and help on this. Please give me message, Thanks advance.
15 years ago
I will take exam next monday, I study "head First" book and feel quite well however, the mock exam at the back of the book seems hard to me any suggestion?
I went to first link, they ask me to "Select a Client and Program" There are too many on list.

I tried a few, but unable to found SCWCD exam, would you like to tell me which one I need to select from the lists?

Thanks a lot
I plan to take the scwcd in July, anyone could tell me exam location in Sydney, phone number etc...

By the way how is the fees? in case if you fail, how long have you to wait to reset the exam?

Cheers
import javax.servlet.jsp.tagext.*;
import javax.servlet.jsp.*;


Need help again. I use same command to complie a tag class, But compiler can not find javax.servlet.jsp.tagext.*; and javax.servlet.jsp.*;


Thanks a lot
great!!! thanks

one little dot make so much difference
I tried your command, still the same

How can I specify "foo" in classpath?

Thanks a lot
I cd into foo directory, the 2 class all under this directory.

1) I type: javac BeerExpert.java
and found BeerExpert.class in foo directory

2) I type: javac -classpath /tomcat/common/lib/servlet-api.jar BeerSelect.java

and got this error message

BeerExpert be= new BeerExpert();
can not found BeerExpert

Thanks a lot
jess
//BeerSelect.java

package foo;

import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.util.*;


public class BeerSelect
extends HttpServlet
{


public void doPost(HttpServletRequest request,HttpServletResponse response)
throws IOException, ServletException{

java.util.Date today = new java.util.Date();

String c=request.getParameter("color");

BeerExpert be = new BeerExpert();
List result= be.getBrands(c);

response.setContentType("text/html");

PrintWriter out = response.getWriter();

out.println("beer selection advice");

Iterator it=result.iterator();

while(it.hasNext()) {
out.println("<br>try"+ it.next());
}
}

}


//BeerExpert.java


package foo;


import java.util.*;


public class BeerExpert{

public List getBrands(String color)

{


List brands = new ArrayList();

if (color.equals("amber")) {
brands.add("jack Amber");
brands.add("Rose Amber");
}

else{
brands.add("Jail pale Ale");
brands.add("Gout Stout");
}

return brands;


}

}


when I compile the 2 classes "in same directory".
the only mistake is the compiler always tell me can not found BeerExpert,

BeerExpert be = new BeerExpert();

Anyone can help me figure out? Thanks a lot
arulk: Thanks so much for your kind information. I checked your website and download CV and interview questions, when I try to download the tutorial, the link not work.

By the way, how do you think the value of certification in Sydney. As when I check your website, found you are aslo in this area.

Thanks again for your kind help

Jess
16 years ago

Did SCJP help you?



I haven't try yet! 4-5 years before,it helped nothing because the market very low. Now I know the market much better, so decide to give another try.

Just want to come here gather more information. then do some preparation.

I thought study SCJD might help me two things
1. update my skills, to catch up
2. may increase the job chance

How do you guys think? :roll:
16 years ago
Will SCJD will help me?

Dear all, I am recently consider to come back to IT area, already gain degree and SCJP a few year before, Now while searching for job, I plan to take SCJD exam. anyone have idea, could this exam help me to get an interview. Thanks in advance!
16 years ago
Dear David and Ben:

I have explain to you why some people�s surname might not be more than two letter as the great diversity exist on the planet earth.

However, please feel free to make any decision based on your understanding instead of discussing this matter again and again.

Thanks for you attention.
16 years ago
Thanks very much for all kind reply.

Do you know "the most useful skill set for applying a java job" in today's market, eg, XML, SQL, oracle, JDBC, J2EE, java bean...

SO I could found some books for study
16 years ago
Dear all

I graduated in 2002 with master degree in IT from a very good university, however at that time IT is very low, I love java very much and got Sun certificate Java programmer in 2003. But I fail to found a job, My first degree in Architecture, So I work as Architect since 2003.

Do you think there is any hope for me to go back to Java area, part of the problem is I lack of IT work experience.

Any suggestion & advice would be very much appreciated!
16 years ago