Click here to Skip to main content
15,888,401 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i add using java.io and using java.util.zip into my Windows application. Its shows an error "Namespace could not found...What can i do...How to solve this issue.
Posted

using java.io and using java.util.zip
They are not Microsoft's .NET Framework related classes that you are trying to add in your .NET application. They are JAVA classes and can be added in the JAVA project once the assembly containing those classes are referenced.

Runtime for both .NET & Java are different and so you cannot reference cross assemblies directly.
 
Share this answer
 
Comments
VJ Reddy 7-Jun-12 3:16am    
Good answer. 5!
Sakthivel Parasuraman 7-Jun-12 3:20am    
But some of the .net applications or project uses that namespace (using java.io and using java.util.zip
)
Finally i find that answer.

Just add the reference "VJSLIB". Then java.io; and java.util.zip will work.
 
Share this answer
 
CSS
Finally i find that answer.

Just add the reference "VJSLIB". Then java.io; and java.util.zip will work.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900