User e22d9561fc
02-03-2015 21:52:17
Ola
I managed to generate the 3D file .mol using
Windows executable with the command:
. Runtime.getRuntime ( ) exec ( "cmd / c
molconvert -3 mol entrada.mol -o out.mol " ) ;
I wonder how do I generate 3D using the Java API ? .
MolConverter.Builder mcbld = new MolConverter.Builder();
mcbld.addInput("caffeine.mol", "mol");
mcbld.setOutput("out.txt", "?");
mcbld.setOutputFlags(MolExporter.TEXT);
MolConverter
mc = mcbld.build();