Questions tagged [ikvm]

IKVM.NET is a JVM written on the CLR, allowing you to execute Java code using the Microsoft CLR run-time or Mono.

IKVM is a implementation of using the . IKVM and its supporting libraries allow Java to be executed under .NET processes (Mono or Microsoft) and allow the compilation of Java byte code into .NET compliant files.

IKVM Implements the Java Virtual Machine and also the Java class libraries.

Project Homepage

278 questions
0
votes
1 answer

Console mono executables do not exit when completed

I have a .NET project that I've been compiling with Visual Studio and running successfully on Windows for years. I'd like to move to use Mac OS X to run this particular program, and so have been working with mono for just a little while do make…
cemerick
  • 5,876
  • 5
  • 27
  • 49
0
votes
1 answer

using MultiLayerPerceptron from Weka with IKVM.NET

I'm trying to use the weka.classifiers.functions.MultilayerPerceptron as classifier on Weka using IKVM.NET but I keep getting the following exception: "Could not load file or assembly 'IKVM.OpenJDK.SwingAWT, Version=7.0.4335.0, Culture=neutral,…
leandro koiti
  • 321
  • 1
  • 5
  • 17
0
votes
1 answer

License issues with ikvm.net?

I'm thinking about the usage of ikvm.net. While ikvm.net has a license which can be used by commercial applications, openjdk will be developed under GPL. My question is due to the fact that ikvm.net is delivering an openjdk .net assembly does this…
Daniel Manzke
  • 310
  • 2
  • 7
0
votes
1 answer

Problems with class loading during deserialization of type from another assembly

There are two assemblies: 1) Assembly containing serializer. This is a place from where serialization and deserialization starts. 2) Assembly containing serialized types. This is a place which is calling serializer from 1st assembly. The idea of…
okutane
  • 12,699
  • 9
  • 54
  • 65
-1
votes
1 answer

How to convert System.Drawing.Bitmap to java.awt.image.BufferedImage?

I'm using IKVM and PDFBox to create accessible PDF using C#. To add image to the document, I need to convert System.Drawing.Bitmap to java.awt.image.BufferedImage. I'm trying it with below code segment. Code: System.Drawing.Bitmap bitmap = new…
Briyatis
  • 57
  • 1
  • 12
-1
votes
1 answer

IKVM C# Tika Implementation - NoClassDefFoundError - sun.java2d.Disposer

I have a small library that utilizes IKVM to run Tika (1.2) for the purposes of extracting text and metadata for use within Lucene. I grab document and image paths from a CMS we are using, and pass them through here: public TextExtractionResult…
Logan B. Lehman
  • 4,337
  • 6
  • 30
  • 43
-1
votes
1 answer

Call in a C# program a function from a dll library generated with IKVM with a List param

Everything is in the title. I generated a dll file from a jar which I included in my C# project. I try to call a function from the library that take a java.util.List in param but I can't use it and I wonder if there's a workaround for that. I also…
Fr4nz
  • 1,536
  • 5
  • 22
  • 30
-2
votes
4 answers

how to convert use of VAR to explicit type in C#

I have some code that uses a class that was converted from Java with IKVM for use in .NET. So my code sample uses VAR when instantiating the class, such as: var Something = new OriginallyFromJavaClass("c:\ReadInThisFile.txt"); Then methods of…
stackonfire
  • 1,119
  • 3
  • 11
  • 21
1 2 3
18
19