如何更改 SQL Developer 的设置以正确识别当前版本的 SDK

How to change settings for SQL Developer to correctly recognize current version of SDK(如何更改 SQL Developer 的设置以正确识别当前版本的 SDK)
本文介绍了如何更改 SQL Developer 的设置以正确识别当前版本的 SDK的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经在我的机器上安装了 Oracle 11g r2,当我打开 Oracle SQL Developer 时,它说:java 1.6.0_02 is not supported 并告诉我安装新的 java 版本.

I've installed Oracle 11g r2 to my machine and when I opened Oracle SQL Developer it says: java 1.6.0_02 is not supported and telling me to install new java version.

然后我已经安装了JDK 1.6.0_27并在环境变量中设置了路径并再次运行Oracle SQL Developer,但出现了同样的错误.

Then I've installed JDK 1.6.0_27 and set the path in environment variables and run Oracle SQL Developer again, but the same error occurred.

如何更改 Oracle SQL Developer 的设置以将 1.6.0_27 识别为我的 SDK?

How can I change the settings for Oracle SQL Developer to recognize 1.6.0_27 as my SDK?

推荐答案

sqldeveloper.conf 在 SQLDeveloper 基目录中的 sqldeveloper/bin 下有一个 java home 的入口正在使用.

sqldeveloper.conf under sqldeveloper/bin in the SQLDeveloper base directory has an entry for the java home being used.

(因此,在 Windows 上,如果您已将 SQLDeveloper 解压缩到 C:sqldev 然后 sqldeveloper.conf 位于 C:sqldevsqldeveloperin)

(So, on Windows, if you have unzipped SQLDeveloper to C:sqldev then sqldeveloper.conf is under C:sqldevsqldeveloperin)

类似于:

SetJavaHome C:Program FilesJavajdk1.6.0_20

退出 SQLDeveloper,删除此条目并重新启动 SQLDeveloper.应该会提示您输入 Java 的位置.

Quit SQLDeveloper, remove this entry and relaunch SQLDeveloper. You should be prompted for the location of Java.

这篇关于如何更改 SQL Developer 的设置以正确识别当前版本的 SDK的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

SQL to Generate Periodic Snapshots from Transactions Table(用于从事务表生成定期快照的SQL)
MyBatis support for multiple databases(MyBatis支持多个数据库)
Oracle 12c SQL: Missing column Headers in result(Oracle 12c SQL:结果中缺少列标题)
SQL query to find the number of customers who shopped for 3 consecutive days in month of January 2020(查询2020年1月连续购物3天的客户数量)
How to get top 10 data weekly (This week, Previous week, Last month, 2 months ago, 3 month ago)(如何每周获取前十大数据(本周、前一周、上个月、2个月前、3个月前))
Select the latest record for an Id per day - Oracle pl sql(选择每天ID的最新记录-Oracle pl SQL)