文本翻译(AI Lab)-nlpTextTrans

返回内容介绍
public static String sample(TAipNlp client) throws Exception {
 //参数内容
  int type = 0;//翻译类型
 String text = "小帅封装代码";//翻译的原文内容
  String result = client.nlpTextTrans(type,text);//文本翻译(AI Lab)
  return result;
}