当我尝试运行 Java 应用程序时,我收到以下错误:
When I try to run Java application, I receive the following error:
线程main"java.lang.UnsatisfiedLinkError 中的异常:java.library.path 中没有 ocijdbc9
我的 PC 上没有文件 ocijdbc9.*,但我在 %ORACLE_HOME%in 中有 ocijdbc10.dll.
I don't have a file ocijdbc9.* on my PC, but I have ocijdbc10.dll in %ORACLE_HOME%in.
%ORACLE_HOME% 指定正确,所以我认为问题在于应用程序正在搜索错误的版本(9 而不是 10).
%ORACLE_HOME% is correctly specified, so I think the problem is that the application is searching for the wrong version (9 instead of 10).
Oracle 和 Java Builder 都是新安装的,所以问题可能出在项目偏好上?您对如何搜索指定错误版本的地方有什么想法吗?
Both Oracle and Java Builder are freshly installed, so the problem may be in project preferences? Do you have any ideas on how to search for the place where the wrong version is specified?
你的 java CLASSPATH 中缺少一个文件.
You're missing a file from your java CLASSPATH.
您需要将 OCI jar 添加到您的类路径中.
You need to add the OCI jar to your classpath.
对于我在 Windows 上安装的 oracle 10.0.2,它位于
For my oracle 10.0.2 install on windows it's located in
%ORACLE_HOME%jdbclibojdbc14.jar
如果您的应用程序需要 ocijdbc9,那么您必须从某个地方下载它并将其添加到 CLASSPATH.不知道从哪里下载,试试oracle网站吧
If your application requires ocijdbc9 then you'll have to download it from somewhere and add it to the CLASSPATH. I don't know where to download it from, try the oracle site
这篇关于java.library.path 中没有 ocijdbc9的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
解析 ISO 8601 字符串本地日期时间,就像在 UTC 中Parsing an ISO 8601 string local date-time as if in UTC(解析 ISO 8601 字符串本地日期时间,就像在 UTC 中一样)
如何将公历字符串转换为公历?How to convert Gregorian string to Gregorian Calendar?(如何将公历字符串转换为公历?)
Java:GregorianCalendar 的最大值和最小值是什么/在哪Java: What/where are the maximum and minimum values of a GregorianCalendar?(Java:GregorianCalendar 的最大值和最小值是什么/在哪里?)
1582 年 10 月 15 日之前日期的日历到日期转换.公历Calendar to Date conversion for dates before 15 Oct 1582. Gregorian to Julian calendar switch(1582 年 10 月 15 日之前日期的日历到日期转换
java日历setFirstDayOfWeek不起作用java Calendar setFirstDayOfWeek not working(java日历setFirstDayOfWeek不起作用)
Java:获取当前星期几的值Java: getting current Day of the Week value(Java:获取当前星期几的值)