0

我想在我的 winform 应用程序中翻译一个字符串。我想从谷歌翻译器翻译这个。所以我的方法是使用“HtmlAgilityPack”的抓取html方法。使用 HTMLAgilityPack 我想在我的 winform 中将翻译后的字符串显示为标签。我用谷歌搜索但我没有这样做。我该怎么做???N:B: 我不想使用 google 翻译器 api 而不是这个我喜欢这样:

using HtmlAgilityPack; 
........
var webGet = new HtmlWeb();
var document = webGet.Load(
"http://translate.google.com/#en/bn/this%20is%20my%20string");
 var node = document.DocumentNode.SelectNodes(
"//span[@class='short_text' and @id='result_box']");
 if (node != null)
    {
  foreach (var xx in node)
   {
    x = xx.InnerText;
    MessageBox.Show(x);
   }
   }
4

1 回答 1

0

看看这个片段,了解如何使用 Google API 进行翻译。

于 2013-01-16T19:17:07.993 回答