-
Hi!
I was told to report a bug.
I'm using the following map file with a bad signature for a property mapping:
The Java-class is very simple:
public class Test
{
public int getFoo(...
2009-12-04 10:45:18 UTC in IKVM.NET
-
Hi!
I have the following lines of Java-code which lead to an unexpected NullPoinerException in the converted .NET assembly:
import javax.tools.JavaCompiler;
import javax.tools.StandardJavaFileManager;
import javax.tools.StandardLocation;
import javax.tools.ToolProvider;
public class Start
{
public static void main(String[] args) throws Exception
{
JavaCompiler c =...
2009-11-10 12:28:00 UTC in IKVM.NET
-
Ok, I see...sure you don't want to replicate these "compatibility" hacks.
But how do I quote this path? I tried with %20 for the space and added a " to the start and end of the path, but still I get the same error...is there a special sign for that?.
2009-11-06 20:41:46 UTC in IKVM.NET
-
Hi!
I just played around with starting processes. I ran into problems when I have spaces in the path parameter for starting a process.
Here is my java code line starting the process, which works fine:
java.lang.Process p1 = Runtime.getRuntime().exec("C:\\Program Files\\Java\\jdk1.6.0_17\\bin\\java");
Using the same line in C#, I get the exception:
Cannot run program "C:\Program": The...
2009-11-06 10:35:44 UTC in IKVM.NET
-
Hi!
The MainClass-code used the statement "ExceptionClass.class.newInstance()" to create the instance of the other class. Replacing this line with "new ExceptionClass()" doesn't produce the wrong behavior in the converted exe-file. Therefore I assume that there is a problem in the "newInstance" method.
2009-10-10 13:34:06 UTC in IKVM.NET
-
Hi!
I have a simple example showing a different behavior in exception handling.
There are two java classes. One main class creating an instance of the other class. The other class throws an exception in it's constructor. I have a try-catch block around the instance-creation-statement in the first class.
Running the example in java shows the expected behavior (the exception gets caught...
2009-10-10 13:21:48 UTC in IKVM.NET
-
I just converted a first simple jar file and used the resulting assembly in a .NET application. All functions did work properly, but it would be nice to (optionally) apply some .NET-naming conventions (UpperCamelCase) during the conversion process!
2009-09-29 07:59:34 UTC in IKVM.NET