Saturday, January 8, 2011

CrazyEngineers Forum - Computer Science & IT Engineering

CrazyEngineers Forum - Computer Science & IT Engineering


Software Required

Posted: 07 Jan 2011 07:51 PM PST

Dear Experts,
What are the softwares required for the following exercises...

1. Develop a Simple Web Site with following Features
* Drop down menus
* Hotspot Links
* CSS
2. Develop a simple AJAX applications
3. Design a Web application in ASP to demonstrate the following using IIS server
* Session and Cookie management
* Server side Includes
4. Design a Web application in JSP to demonstrate the following using tomcat server
* Include and Forward
* Use Bean Tag
5. Create a Custom Tag Library and use the Tags in JSP pages.
6. Create XML Document to store catalog of books and validate using DTD and
Schema.
7. Develop a student information system to insert, update, delete and search
information using DOM and SAX
8. Develop an application to display catalog information in tabular format using XSLT
9. Develop a Simple Web Service using JAX-RPC
10 . Develop a Simple Web Service using .NET
11. Implement Web Service Interoperability

I am an lab instutor...so if u guide me...i will prepare ....
Advance Thanks...
Rengaraj

Java: replace() by accepting characters dynamically

Posted: 07 Jan 2011 06:49 AM PST

plz give example on replace() by accepting characters dynamically in Java. Actually i tried following code:



System.out.println("Enter characters to be replaced:");
char s4=(char)System.in.read();
char s5=(char)System.in.read();
System.out.println(s4);
System.out.println(s5);
String r=s1.replace(s4,s5);
System.out.println(r);


But it is not accepting s5 character.

No comments:

Post a Comment