http://www-01.ibm.com/support/docview.wss?uid=swg21573032

Technote (FAQ)

Question

How to change the interface language of CPLEX Optimization Studio IDE?

Answer

By default, CPLEX Optimization Studio IDE will use the language used by your operation system, if the language is supported. If the operating system uses an unsupported language, CPLEX Optimization Studio IDE will use English as the interface language. The choice of IDE interface language is not related to the installer interface language.

To change the interface language of CPLEX Optimization Studio IDE, you need to find the shortcut to the IDE on Start Manu, right click on shortcut, click on properties and add command line option -nl <language_code>. If the path to the target executable file are in quote marks, please add the option out of the quote marks.

On Windows 8/8.1, please right click the icon of CPLEX Studio IDE and select "Open file location". A folder with a shortcut to CPLEX Studio IDE will be opened. Then the shortcut can be edited by right clicking it, selecting properties and adding option -nl <language_code> or -Duser.language=<language_code>.

Now CPLEX Optimization Studio support the following languages:

Language Language Code
Chinese, Simplified zh_CN
English en or en_US
French fr
German de
Japanese ja
Korean ko
Polish (*) pl
Portuguese, Brazilian (*) pt_BR
Russian (*) ru
Spanish es
Turkish (*) tr

Languages marked with * are newly supported since CPLEX Optimization Studio version 12.5.

The following screenshot shows how to configure the shortcut to CPLEX Optimization Studio IDE to start in Simplified Chinese:

Note: If the target has quotation marks ("), please add the option -nl <language_code> outside the quotation marks. Otherwise, you might get an error reported by Windows indicating the target is not valid.

Note2: Some error messages have not yet been localized. Even if you change the interface language, some error messages will still be displayed in English.

CPLEX IDE 菜单栏语言设置( 中文 英文 韩文 等多国语言 设置)的更多相关文章

  1. jqGrid 中文配置 - grid.locale-cn.js 多国语言

    中文配置如下:多国语言(demo 内有官方下载连接 ): jqGrid 表格插件中文 grid.locale-cn.js 代码如下: ;(function ($) { /** * jqGrid Eng ...

  2. Android中判断字符是否为中文、韩文、日文

    我们经常需要在程序中判断一个字符是否为CJK(Chinese.Japanese.Korean)语言的字符. 例如,在Contacts里面程序需要判断联系人姓名的所属语言. 今天为大家介绍一种NameS ...

  3. 【开发工具】- 设置Sublime支持韩文展示

    菜单栏 --> 首选项 --> 设置 -->User 添加以下代码 { "font_size": 12, "show_encoding":tr ...

  4. Eclipse中文语言包安装和设置中文Doc

    1.安装中文语言包 Eclipse所有的扩展功能都是以插件的形式添加上去的,安装插件时有多种形式,下面是比较常用的两种: 直接将插件中的文件复制到Eclipse对于的目录中.优点是安装时很方便,缺点是 ...

  5. Mac下输入法总是默认中文,怎么设置成英文的?

    最近一同事在DreamWeaver里,写CSS样式的时候,默认总是中文,切到别的窗口,再切回来,就变成中文了,总要按一下切换键,时间长了特别烦人. 在网上找了一些方法,最后找到一个有效的. 总结一下就 ...

  6. Eclipse中文语言包安装和设置中文

    对于英语水平不好或者初学者来说使用中文开发环境可以有效提高学习效率,便于快速的学习和上手,不过对于当前的技术环境学习英语还是非常有必要的,当对Eclipse掌握到一定程度还是应该多使用英语环境来开发, ...

  7. 关于notepad++不能设置中文的解决方法

    好久没用notepad++了,最近遇到一个base64的音频文件,想起来notepad++挺好用的 于是安装好 然后发现 最新的notepad++竟然不能显示中文界面 这怎么可以呢! 上网搜 果然 作 ...

  8. cookie设置中文时的编码问题

    cookie设置中文时的编码问题:cookie在设置时不允许出现中文.非要设置中文的怎么办,看下面的解决方案: 方式1 def login(request): ret = HttpResponse(' ...

  9. XP 多国语言包

    http://download.microsoft.com/download/f/6/4/f648c363-6975-470c-8202-ac5aea706109/WindowsXP-KB835935 ...

随机推荐

  1. Codevs 1427 特种部队(双路DP)

    1427 特种部队 时间限制: 1 s 空间限制: 64000 KB 题目等级 : 黄金 Gold 题目描述 Description 某特种部队接到一个任务,需要潜入一个仓库.该部队士兵分为两路,第一 ...

  2. autoplay media studio couldn't load

    AutoPlay Media Studio 7 (English version) is installed on target machine. Following error occurred w ...

  3. ECMA中关于if与else的关系的一句英文,感觉比较经典

    Each else for which the choice of assocated if is ambiguous shall be associated with the nearest pos ...

  4. 测试php页面执行代码时间

    //生命一个计算脚本运行时间的类 class Timer { private $startTime = 0; //保存脚本开始执行时的时间(以微秒的形式保存) private $stopTime = ...

  5. nginx重新加载配置

    1.kill -HUP `cat /usr/local/nginx/logs/nginx.pid` 2./usr/local/nginx/sbin/nginx -s reload

  6. 参数TFilterPredicate 类型说明

    类型名称:TFilterPredicate 类型定义: type TFilterPredicate = reference to function(const Path: string, const ...

  7. 双数组Trie树 (Double-array Trie) 及其应用

    双数组Trie树(Double-array Trie, DAT)是由三个日本人提出的一种Trie树的高效实现 [1],兼顾了查询效率与空间存储.Ansj便是用DAT(虽然作者宣称是三数组Trie树,但 ...

  8. Oracle XE修改默认HTTP端口8080

    打开SQL*Plus控制台.用sys或者system登陆.然后运行: begin dbms_xdb.sethttpport('9999'); end; / 搞定.

  9. the request doesn't contain a multipart/form-data or multipart/form-data stream, content type header

    the request doesn't contain a multipart/form-data or multipart/form-data stream, content type header ...

  10. uva 11437 - Triangle Fun

    计算几何: 直线交点: #include<cstdio> using namespace std; struct node { double x,y; node(,):x(x),y(y){ ...