Llamando C # dll desde Java

Soy un desarrollador de Java. Pero, por alguna razón, tengo que tomar la ayuda de C # para cumplir mi tarea. A continuación mencioné el código C # que se usa para crear una DLL. Esa DLL tiene que ser utilizada en mi programa Java para hacer lo necesario.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Office.Interop.Word;

namespace Yrl.Tracingtool
{
public class DocxUtil
{
    public Application Jump(string fileName)
    {

        object fileNameAsObject = (object)fileName;
        Application wordApplication;
        try
        {
            wordApplication = new Application();
            object readnly = false;
            object missing = System.Reflection.Missing.Value;
            wordApplication.Documents.Open(ref fileNameAsObject, ref missing, ref readnly, ref missing,
                                            ref missing, ref missing, ref missing, ref missing,
                                            ref missing, ref missing, ref missing, ref missing,
                                            ref missing, ref missing, ref missing, ref missing);
            object what = Microsoft.Office.Interop.Word.WdGoToItem.wdGoToPage;
            object which = Microsoft.Office.Interop.Word.WdGoToDirection.wdGoToFirst;
            object count = 3;

            wordApplication.Selection.GoTo(ref what, ref which, ref count, ref missing);

            return wordApplication;
        }
        catch (Exception ex)
        {
            //LogEntry log = new LogEntry();
            //log.Categories.Add("Trace");
            //log.Message = ex.ToString();
            //Logger.Write(log, "Trace");
            throw new System.IO.FileLoadException("File cannot be opened");
        }
        finally
        {
            wordApplication = null;
        }
    }
}
}

He revisado este foro y otros foros también, pero la mayoría habla sobre el uso de un archivo DLL C ++ o C en una llamada JNI. Si alguien tiene conocimiento de cómo llamar a C # DLL desde Java, avíseme.

Respuestas a la pregunta(2)

Su respuesta a la pregunta