Hi friends
I got stuck while i began to write a speechh recognizer using
java When i try the following simple program to
test if any recognizers are present or not then the output comes out to be null.
import javax.speech.recognition.*;
import javax.speech.*;
import javax.speech.synthesis.*;
class recogdemo
{
public static void main (
String args[]) throws Exception
{
EngineModeDesc desc=new EngineModeDesc(null);
Recognizer recog=null;
recog=Central.createRecognizer(desc);
System.out.println(recog);
}
}
I dont the what is the problem .........
Somebody please help me its urgent........