While running basic HelloWorld program using JSAPI, it is showing error "java.lang.NullPointerException at HelloWorld.main(HelloWorld.java:11)"

Following is the code:

import javax.speech.*;
import javax.speech.synthesis.*;
import java.util.Locale;

public class HelloWorld {
    public static void main(String args[]) {
    try {
        // Create a synthesizer for English
        Synthesizer synth = Central.createSynthesizer(new SynthesizerModeDesc(Locale.ENGLISH));
        // Get it ready to speak
        synth.allocate();
        synth.resume();
        // Speak the "Hello world" string
        synth.speakPlainText("Hello, world!", null);
        // Wait till speaking is done
        synth.waitEngineState(Synthesizer.QUEUE_EMPTY);
        // Clean up
        synth.deallocate();
    } catch (Exception e) {
        e.printStackTrace();
    }
}
}

Edit: I edit my program:

import javax.speech.*;
import javax.speech.synthesis.*;
import java.util.Locale;

public class HelloWorld {
public static void main(String args[]) {
    try {
        // Create a synthesizer for English
        SynthesizerModeDesc modeDesc = new SynthesizerModeDesc(null,"general",Locale.US,null,null);
        System.out.println(modeDesc);
        Synthesizer synth = Central.createSynthesizer(modeDesc);
        //Synthesizer synth = Central.createSynthesizer(null);
        // Get it ready to speak
        System.out.println(synth);
        synth.allocate();
        synth.resume();
        // Speak the "Hello world" string
        synth.speakPlainText("Hello, world!", null);
        // Wait till speaking is done
            synth.waitEngineState(Synthesizer.QUEUE_EMPTY);
        // Clean up
        synth.deallocate();
    } catch (Exception e) {
        e.printStackTrace();
    }
}
}

and it is giving output:

javax.speech.synthesis.SynthesizerModeDesc@9304b1
null
java.lang.NullPointerException
    at HelloWorld.main(HelloWorld.java:15)

It seems that SynthesizerModeDesc is working fine but it is not detecting any engine as i tried passing null also to the function Central.createSynthesizer (i.e get default engine) but still it is returning null. I checked number of engines it is detecting, but it shows 0.

Please help me !! :(

link|improve this question
Is that the full stacktrace? – Peter Liljenberg Feb 4 at 21:13
Yes, it is the full stacktrace. – roshan_iiita Feb 5 at 5:33
feedback

2 Answers

From the javadocs for Central.createSynthesizer:

Returns: a Synthesizer matching the required properties or null if none is available

Apparently, there's none available. Perhaps trying Locale.US might produce a valid SynthesizerModeDesc

Edit in response to comment: Seriously, I've never used this thing ... but I'm actually reading the javadocs as we go along here. The constructor you're using (new SynthesizerModeDesc(Locale.ENGLISH)) says,

"Construct an EngineModeDesc for a locale. The engine name, mode name and running are set to null".

That doesn't sound good from a "And then I want to use it" perspective. There's another constructor that allows you to set those options, and methods to set them as well.

link|improve this answer
Java docs are usually a good friend :) – Peter Liljenberg Feb 4 at 21:19
I always love me some Javadocs :-D – Brian Roach Feb 4 at 21:21
Sorry, it is showing the same error after writing either "Locale.US" or "Locale.getDefault()" – roshan_iiita Feb 4 at 21:23
See latest edit. Seriously, the javadocs aren't horribly obtuse. – Brian Roach Feb 4 at 21:28
I went through javadoc but still the problem continued. See latest edit. – roshan_iiita Feb 5 at 5:34
feedback

Seems to be a solution discussed here

Synthesizer synth = Central.createSynthesizer(
new SynthesizerModeDesc(
null, // engine name
"general", // mode name
Locale.US, // locale
null, // running
null) // voice
);

Are you sure you've done this "By the way I assume you are using freetts and have copied the "speech.properties" file to your directory of jdk" ?

link|improve this answer
Your answer would be better if you'd explain the solution and link to the source. – Navarr Feb 5 at 18:57
True that! I'm on my iPhone so typing long explanations kind of suck. – Peter Liljenberg Feb 5 at 19:46
Again the same error. At first, i was not using freetts or sphinx but not i tried on sphinx also but still it is showing the same error. – roshan_iiita Feb 15 at 7:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.