ya, i install the MySQL already.
Now, the difficulties I face is I want to store the translated text
into database.
However, I don't know how to link with the database by using java.
The IDE used is NEtbean.
What I want is when I click the button, then the translated text can
store into the database.
Anybody know how to do it?
Thanks....
@rainny
There are multiple things you have to do and know. As you explained I
understand that you need to store a text recognized from a recorded
voice into database table. So I think all you what you want is to
write Java desktop application that:
1- will keeps running in a system. ==> (you need to know how to run
Java program.)
2- record any speech through microphone and store in file. ==> (how to
record voice using Java and store in file.)
3- process/handle the recorded voice to recognize the speech. ==>
(speech recognition in Java.)
4- and after you got the word(s) in a variable, object, or whatever;
you need to store this word(s) into a database->table->record->field
that accepting text ==> (So for this you need to:
A-- Install Database System (MySql as you have)
B-- Create a Database
C-- Create a table in the database with the fields you want.
D-- Know how to connect to database in Java
E-- Know how to Insert a record into database table (using Java and
SQL).
)
I tried to summarize all the points for you as much as I can. Hope
that will help you to focus your questions or searches in a particular
point to help the people helping you.