Click here to Skip to main content
15,892,298 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
how to use Google translator in Windows applications(winforms) in .net
Posted

1 solution

Google Translate API is now available as a paid service. Please see:
https://developers.google.com/translate/[^].

You can start with the Developer's Guide:
https://developers.google.com/translate/v2/getting_started[^].

If you cannot pay for the service, probably the only possibility would be using just the Google Translate HTTP interface designed for human's use:
http://translate.google.com/[^].

If you choose to use it programmatically, you can do it using the methods similar to those of Web scraping:
http://en.wikipedia.org/wiki/Web_scraping[^].

Basically, you need to use the class System.Net.HttpWebRequest:
http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.aspx[^].

I explain further detail in my past answers:
get specific data from web page[^],
How to get the data from another site[^].

—SA
 
Share this answer
 
v2
Comments
Prasad_Kulkarni 28-May-12 23:56pm    
Good one +5!
Sergey Alexandrovich Kryukov 29-May-12 0:12am    
Thank you, Prasad.
--SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900