Wrick Sharma

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

Recent posts by Wrick Sharma

Got it. I got the book head first sevlets/jsp and going through it. Did'nt know its that complicated.

Appreciate your suggestions guys.
19 years ago
Could you please give me more details on how to accomplish this. Thanks a lot.
19 years ago
Let me be little more clear. I do know the classes to use for writing to a flat file.

I am looking for help more on the how to deploy the class on web server. We are using apache web server. I am not sure where to deploy the class file and how to send the data to this file from the form. The requirement is to write the data to a flat file on submission from the html form.
19 years ago
We are creating a enrollment form and I need to capture this information and write to flat file when a user click on the submit button. Any efficient ideas on how to accomplish this.
19 years ago
I have finally completed reading this book and moving ahead with Head First Servlets and JSP.

Was just wondering if there a way to get a soft copy of Head First Java. It would be very helpful to have it handy. Carrying the book is very inconveninient.

Thanks.
19 years ago
Bert, Thanks for your response. I think that makes sense.

Can you suggest me a good resource for the same. My work mostly involves developing application that has interaction with database (Oracle, sqlserver etc). Thanks again for your time.
19 years ago
Just wanted to know why you JDBC API is not covered in Head first Java. There is no chapter that explains how to interact with the database.

Any particular reason or Can you suggest some resource. Thanks.
19 years ago
Head first Java is THE BEST BOOK to get the basic concepts right. I tried many book but eventually got the concepts right using the Head First Java.
19 years ago
Thanks a lot for your response.
19 years ago
I know I can read or leave it at my choice. But just want to know from you gurus if I would be missing any key concepts in terms of maintaining the continuity of the book. Please advise if you can.

Thanks.
19 years ago
Hi Bert and Kathy,

I had a question on HFJ chp 12 and Chp 13. Since JSP is being used in most of the applications, is it ok if I skip reading these two chapters and revisit them when time permits.

By the way this is one of the best books I have ever read. I am an Oracle guy trying to learn java and j2ee technologies. I already bought Head First design pattern and Head first jsp and servlets. Will be reading these books after I complete HFJ.

Please advise. Thanks.
19 years ago
I would like to view word documents on the website. It is a static website. The document contains images and text. I tried saving the word doc as webpage and viewing but the images did not show up correctly.

Any ideas. Thanks.
19 years ago
Oops ... My bad ... thanks.
19 years ago
Any ideas why this code is not compiling

public class Arrays {

public static void main(String[] args) {
int[] a1 = { 1, 2, 3, 4, 5 };
int[] a2;

a2 = a1;

for(int i = 0; i < a2.length; i++)
System.out.println (a2.length);
a2[i]++;

for(int i = 0; i < a1.length; i++)
System.out.println(
"a1[" + i + "] = " + a1[i]);
}
}

If i remove "System.out.println (a2.length); it compiles.
Thanks.
19 years ago
Does anyone have any information on this exam. Is it a good idea to take this one before attempting for SCJP 1.5.

Thanks.