赞
踩
GET https://www.googleapis.com/language/translate/v2?key=INSERT-YOUR-KEY&source=en&target=de&q=Hello%20world
import com.google.api.translate.Language;import com.google.api.translate.Translate;public class Main { public static void main(String[] args) throws Exception { // Set the HTTP referrer to your website address. Translate.setHttpReferrer(/* Enter the URL of your site here */); String translatedText = Translate.execute("Bonjour le monde", Language.FRENCH, Language.ENGLISH); System.out.println(translatedText); }}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。