我使用的是Android Studio 2.3和Oracle 11.2 g 我想从Android应用程序连接到我的orcl数据库 我建立了这样一个应用程序:
System.setProperty('org.apache.commons.jelly.tags.fmt.timeZone', 'Asia/Jerusalem')
并在MainActivity.java中:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/hello"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="TextView" />
</LinearLayout>
我将ojdbc7.jar复制到..MyApplication \ app \ libs并在Android Studio中执行此操作: 右键单击应用程序并单击(打开模块设置),然后在(依赖项)中添加Jar依赖项并选择我的MyApplication \ app \ libs \ ojdbc7.jar 我使用YouWave作为模拟器但是当我运行我的应用程序时它显示(无法找到数据库驱动程序oracle.jdbc.driver.OracleDriver) 我应该怎么做来解决这个问题 感谢