Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6862831
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T02:42:32+00:00 2026-05-27T02:42:32+00:00

I am looking for the prototypical ‘Hello World’ program that creates a Mathematica Notebook

  • 0

I am looking for the prototypical ‘Hello World’ program that creates a Mathematica Notebook file.

I have this working program.

 package graphica;

 import com.wolfram.jlink.*;

 /**
  *
  * @author Nilo
  */
public class MathematicaTester {

public static void main(String[] args) {

    KernelLink ml = null; 
    String jLinkDir = "C:\\Program Files\\Wolfram Research\\Mathematica\\8.0\\SystemFiles\\Links\\JLink";
    System.setProperty("com.wolfram.jlink.libdir", jLinkDir);

    try { 
        ml = MathLinkFactory.createKernelLink("-linkmode launch -linkname 'C:\\Program Files\\Wolfram Research\\Mathematica\\8.0\\MathKernel.exe'");

        ml.discardAnswer();
        String expr = "Sum[k^2,{k,1,11}]";
        ml.evaluate(expr);
        ml.waitForAnswer();
        String x = ml.getString();
        System.out.println("Result = " + x);

    } catch (MathLinkException e) { 
        System.out.println("Fatal error opening link: " + 
        e.getMessage()); 
        return; 
    }
}
}

When I run this I get the following -expected- output.

run:
Result = 506
BUILD SUCCESSFUL (total time: 2 seconds)

QUESTION:

I want to change this program so that a Mathematica Notebook is created. The program will ( eventually ) add line after line of mma command strings. It would be nice if a Mathematica frontend is started at the same time and that the mma code is evaluated by request from the Java program. Essential is the creation of a Notebook that can be opened later by the mma front-end.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T02:42:33+00:00Added an answer on May 27, 2026 at 2:42 am

    It took some research but I managed to answer the question myself.

     package graphica;
    
     import com.wolfram.jlink.*;
    
     /**
      *
      * @author Nilo
      */
     public class MathematicaTester {
    
         public static void main(String[] args) {
    
             KernelLink ml = null; 
             String jLinkDir = "C:\\Program Files\\Wolfram Research\\Mathematica\\8.0\    \SystemFiles\\Links\\JLink";
             System.setProperty("com.wolfram.jlink.libdir", jLinkDir);
    
             try { 
                 ml = MathLinkFactory.createKernelLink("-linkmode launch -linkname 'C:\\Program Files\\Wolfram Research\\Mathematica\\8.0\\MathKernel.exe'");
            //test-1
                 ml.discardAnswer();
                 String expr = "Sum[k,{k,1,11}]";
                 ml.evaluate(expr);
                 ml.waitForAnswer();
                 String x = ml.getString();
                 System.out.println("Result = " + x);
           //test-2
                 expr = "UsingFrontEnd[nb=NotebookPut[Notebook[{Cell[\"Graphics3D[Cuboid[]]\", \"Input\"]}]]]";
                 System.out.println("Result = " + ml.evaluateToOutputForm(expr, 40) );
                 expr = "UsingFrontEnd[NotebookSave[nb,\"TERRANOVA1\"]]";
                 System.out.println("Result = " + ml.evaluateToOutputForm(expr, 40) );
    
             } catch (MathLinkException e) { 
                 System.out.println("Fatal error opening link: " + 
                 e.getMessage()); 
                 return; 
             }
         }
     }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Looking for suggestions on file system management tools. We have several terabytes of images,
Looking into ExtJS 4 and I am attempting to do the Hello World tutorial
Looking through this C++ BigInt library and found the BigInt.cpp file. At the top
Looking at the samples that come with EPPlus I have managed to create the
Looking at Facebook I have noticed that images vary in size from 100x100 to
Looking at posts like this and others, it seems that the correct way to
Looking for an example that: Launches an EXE Waits for the EXE to finish.
Looking for a Linux application (or Firefox extension) that will allow me to scrape
Looking through the achievement list for Visual Studio 2010, it says that there is
Looking for an equivalent container class that matches to C#'s Arraylist collections class. Is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.