英文:
Set Netbeans Platform Application language
问题
当我将以下代码添加到我的appName.conf
文件中:
default_options="--branding ersyp -J-Xms24m -J-Xmx64m J-Duser.language=tr-J-Duser.region=TR"
NetBeans平台应用程序的语言应该是土耳其语,但当我从NetBeans运行我的应用程序时,该文件会被覆盖。如何防止这种情况发生?
英文:
When I add
default_options="--branding ersyp -J-Xms24m -J-Xmx64m J-Duser.language=tr-J-Duser.region=TR"
code to my appName.conf
file the NetBeans platform application language should be Turkish but when I run my application from NetBeans this file gets overwritten.
How can I prevent that from happening?
答案1
得分: 0
在你的Netbeans应用程序的Important Files
文件夹中的project.properties
文件中添加以下内容:
run.args.extra=--locale tr
英文:
Add
run.args.extra=--locale tr
in the project.properties
file of your Netbeans application (this file is in the Important Files
folder of your project's module suite).
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论