porting java 2 dotnet (any idea)

G

Guest

Hi,
when i am converting java to dotnet through java language conversion wizard
present in vs.net, i am able to do it only for console applications of java.
i am not able to do it for web based applications.
can u give me some idea as to how to convert it.

Thanks in Advance,
Nizam
 
P

pvdg42

Hi,
when i am converting java to dotnet through java language conversion
wizard
present in vs.net, i am able to do it only for console applications of
java.
i am not able to do it for web based applications.
can u give me some idea as to how to convert it.

Thanks in Advance,
Nizam

Basically, by hand.
As I'm sure you're already aware, the .NET Framework class library does not
have direct equivalents to all classes in the Java API (just as the Java API
does not have direct equivalents to all .NET Framework classes).
There is also a question of technologies. ASP.NET primarily supports server
side automation, while the Java API offers applets, servlets, Java server
pages, etc.
So, depending on what you are using from the Java API, you may have to
redesign your application, or at least redesign the interface.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top