Use tools from ikvm.net to generate .NET libraries out of java code.
|
||||||
|
Use tools from ikvm.net to generate .NET libraries out of java code.
I was trying to access a file with the user having only read permission. the code looked like: FileStream fs =new FileStream( “c:\path\to\file.ext”, FileMode.Open); and it uset to throw exception “access denied”. After some investigations I’ve found that FileAccess.Read helps a lot. FileStream fs = new FileStream( “c:\path\to\file.ext”, FileMode.Open, FileAccess.Read); Check this link. It is a good way to deal with configuration sections in .NET environment. |
||||||
|
Copyright © 2012 are.ehibou.com - All Rights Reserved Compression Plugin made by Web Hosting |
||||||