Java Tutorials
71. package com.sun.speech.freetts does not exist.
By: Kris Bravo : 2010-07-31
Description: The short version is that you don't have the libraries in your classpath when you compile. But once you run the test in your own environment, you also need to make sure the following property is set
72. Text to Speech conversion program in Java
By: Sulfikkar : 2010-07-31
Description: This is a sample java program that explains how to use text to speech conversion.
73. How to create wav file using freetts
By: Vijay Katta : 2010-07-31
Description: Using this code, you can save the output of the voice.speak() into a Wave file.
74. How to set the width of a Text element in JavaFX?
By: AnderRuiz : 2010-07-31
Description: wrappingWidth: Sets the maximun width of the text boundsType: If you put the wrappingWidth var and you want to center a text you MUST set this var to VISUAL
75. Major components of FxObjects in JavaFX
By: Srikanth Shenoy : 2010-07-31
Description: In a single short line - "FxObjects makes Enterprise JavaFX development easy, elegant and fast" Framework is built from the grounds-up with Test Driven Development in mind. Mock Commands are provided. Easily integrates with JUnit and jMock. User guide covers this in detail.
76. Type Casting in Java
By: Saravanan : 2010-01-01
Description: In this tutorial we are going to see how to typecast in java. Now we are going to see the syntax and sample code to convert each and every data type into other type.
77. How to initialize an Array and how to copy the array
By: Saravanan : 2010-01-01
Description: In this article we are going to see how to initialize an Array and how to copy the array. Java has several types to initialize an array now we are going to see some types to initializing.
78. Insert an element in Array, Search and Sort Array by using java program
By: Saravanan : 2010-01-01
Description: In this tutorial we are going to see how to insert an element for specified index and how to search an element in array and not in array.
79. Java code for Enumeration and using java.lang.reflect.Array
By: Saravanan : 2010-01-01
Description: In this tutorial we are going to see how to use Enumeration in java.Enumeration is an interface so we have to implement it from util package. Enumeration specifies two methods. These are, boolean hasMoreElements(), Object nextElement().
80. Java program for Associate keys with values
By: Saravanan : 2010-01-01
Description: In this tutorial we are going to see how to associate keys with values. Here we are going to see how to create own methods for mapping the keys with values and how to get the value using Key.