I have a code in C# that I need to use or convert in Java. It is a code that use a Reference to the Word 12.0 Object Library.
Here the beginning the C# code :
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Office.Interop.Word;
How can I use C# in Java or how can I rewrite the code withe the reference from C# to Java?
Thank you