Chandrakant Nambiar

Greenhorn
+ Follow
since Aug 10, 2006
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 Chandrakant Nambiar

Can you please confirm if the <body-content> had been tagdependent, the scriplet (in the tag body) would have been printed to the page AS-IS?
Hi Ranchers,

Please refer Pg 472 - HFSJ. If the tag is defined as <body-content>scriptless</body-content> and if a script is present in the body of the tag, does it result in an error or the contents are displayed as such(without evaluating the script)?

Thanks,
Chandrakant
My apologies for any inconvenience caused to ranchers for the same.
17 years ago
Thanks once again, Merrill.
FYI, the code that i am using to write the file is:

BufferedOutputStream outStream =
new BufferedOutputStream(new FileOutputStream(savedFile),
40048);
int count;
byte[] databuff = new byte[40048];

while ((count = inStream.read(databuff, 0, 40048)) != -1) {
outStream.write(databuff, 0, count);
}

outStream.flush();
outStream.close();
inStream.close();

Any suggestions to improve this? Thanks.
17 years ago
Thanks for the quick reply.
But i have not imposed any restriction anywhere in the code. Does it mean that i can even upload text files of size more than 200MB (thats my requirement) in my Struts/IE application? My code works perfect for file sizes upto 40MB. After that it fails to deliver. Any idea what could be wrong. Thanks in advance.
17 years ago
Hi Guys,

Can anyone here kindly let me know the maximum size of a file that could be uploaded through IE using Struts? I have a requirement to upload text files of more than 100MB in Java. Is this possible? Is the maximum size configurable? Any help/links for the same would be appreciated.

Thanks,
Chandrakant
17 years ago
Hi Guys,

Can anyone here kindly let me know the maximum size of a file that could be uploaded through IE? I have a requirement to upload text files of more than 100MB in Java. Is the maximum size configurable? Any help/links for the same would be appreciated.

Thanks,
Chandrakant
17 years ago
Hi Guys,

Can anyone here kindly let me know the maximum size of a file that could be uploaded through IE? I have a requirement to upload text files of more than 100MB in Java. Is the maximum size configurable? Any help/links for the same would be appreciated.

Thanks,
Chandrakant
Hi Guys,

Can anyone here kindly let me know the maximum size of a file that could be uploaded through IE? I have a requirement to upload text files of more than 100MB in Java. Is the maximum size configurable? Any help/links for the same would be appreciated.

Thanks,
Chandrakant
17 years ago
I got 57/61 correct. I lost 3 in Threads (not very tough questions but still didnt get them right). I lost 1 in Language Fundamentals (very silly mistake).
17 years ago
Hi guys,
Took SCJP 1.4 this morning. Cleared with 93% score.

Questions were pretty easy, except some from threads on which i had to ponder a little. I finished the test in around 50 mins after which i reviewed my answers for another 10 mins and then opted to see my score .

To all those who are preparing for this test, i would recommend the book K&B plus mock tests from Marcus Green and Dan Chisholm. This would easily see you through with a good score.

Sincerest thanks to Kathy and Bert for their wonderful piece of work. You guys have contributed the maximum for my success today.
Special thanks to all you ranchers for your excellent support throughout.
17 years ago