我正在编写一个用于创建数据库和数据插入的简单程序,但是我无法创建数据库而且我得到了#34;错误"来自Catch Block.Even我无法在文件浏览器中搜索我的数据库,但它没有显示在那里。因为,我是Android的新手,可能是发生了一些错误。请查看代码让我知道我错过的地方。谢谢你。
代码如下:
布局文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.example.dataandroid.MainActivity"
tools:ignore="MergeRootFrame" >
<TextView
android:id="@+id/txtname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/labelOne"
android:textAppearance="?android:attr/textAppearanceLarge" />
<EditText
android:id="@+id/name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10" >
<requestFocus />
</EditText>
<TextView
android:id="@+id/txtAge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/labelTwo"
android:textAppearance="?android:attr/textAppearanceLarge" />
<EditText
android:id="@+id/age"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10" />
<Button
android:id="@+id/btnSubmit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Submit" />
<Button
android:id="@+id/btnSave"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Save" />
</LinearLayout>
主要活动:
package com.example.dataandroid;
import android.support.v7.app.ActionBarActivity;
import android.support.v7.app.ActionBar;
import android.support.v4.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import android.os.Build;
public class MainActivity extends ActionBarActivity {
EditText name,age;
Button submit,save;
myDBHelper dbHelper;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
name=(EditText)findViewById(R.id.name);
submit=(Button)findViewById(R.id.btnSubmit);
save=(Button)findViewById(R.id.btnSave);
age=(EditText)findViewById(R.id.age);
dbHelper=new myDBHelper(this);
save.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
String n= name.getText().toString();
String a= age.getText().toString();
try
{
dbHelper.insertContact(n,a);
}
catch(Exception e)
{
Toast.makeText(MainActivity.this, "Error", Toast.LENGTH_SHORT).show();
}
}
});
if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment()).commit();
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
/**
* A placeholder fragment containing a simple view.
*/
public static class PlaceholderFragment extends Fragment {
public PlaceholderFragment() {
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_main, container,
false);
return rootView;
}
}
}
DatabaseHelperClass:
package com.example.dataandroid;
import android.content.ContentValues;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteDatabase.CursorFactory;
import android.database.sqlite.SQLiteOpenHelper;
public class myDBHelper extends SQLiteOpenHelper{
private static final String DB_Name="mydb";
private static final int version=1;
private static final String table_name="Details";
private static final String Col_Name="Name";
private static final String COL_Age="Age";
//private static final String String_Create="Create Table" + table_name + "(_id
Integer Primary Key AUTO INCREMENT," + Col_Name + "TEXT , " + COL_Age + "TEXT);";
public myDBHelper(Context context) {
super(context, DB_Name, null, version);
// TODO Auto-generated constructor stub
}
@Override
public void onCreate(SQLiteDatabase db) {
// TODO Auto-generated method stub
String String_Create="Create Table" + table_name + "(_id Integer Primary Key AUTO
INCREMENT," + Col_Name + "TEXT , " + COL_Age + "TEXT);";
db.execSQL(String_Create);
/* ContentValues cv=new ContentValues();
cv.put(Col_Name," Name");
cv.put(COL_Age, "Age");
db.insert(table_name, null,cv);*/
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
// TODO Auto-generated method stub
db.execSQL("Drop Table if exists" + table_name);
onCreate(db);
}
private SQLiteDatabase db;
public long insertContact(String name,String age)
{
ContentValues cv=new ContentValues();
cv.put(Col_Name,name);
cv.put(COL_Age,age);
return db.insert(table_name, null,cv);
}
}
答案 0 :(得分:0)
在插入任何行之前,首先需要打开dataBase 像这样
dbHelper.db.open()
dbHelper.insertContact(n,a);
答案 1 :(得分:0)
你说“我无法在文件资源管理器中搜索我的数据库,它没有在那里显示”。这是因为数据库保存在/ data / data / your_package_name / databases /中,并且只有在您使用手机根目录时才能使用文件资源管理器查看它。 话虽如此,如果你仍然希望看到你的数据库(比如,调试并看到它被记录在其中)而不需要为你的手机生根,你可以在你的DBConnector类中添加一个方法来将数据库从其隐藏位置复制到SD卡,然后你就可以使用它(比如复制到你的计算机并用SQLite Studio打开它。
这是代码:
public void copyDBtoSdCard() {
File dataPath = Environment.getExternalStorageDirectory();
File inFile = mCtx.getDatabasePath(DATABASE_NAME);
try {
InputStream myInput = new BufferedInputStream(new FileInputStream(inFile));
OutputStream myOutput = new FileOutputStream(dataPath + "/"+ DATABASE_NAME+".db");
// transfer bytes from the inputfile to the outputfile
byte[] buffer = new byte[myInput.available()];
int read;
while ((read = myInput.read(buffer)) != -1) {
myOutput.write(buffer, 0, read);
}
// Close the streams
myOutput.flush();
myOutput.close();
myInput.close();
} catch (IOException e) {
Log.e(TAG, "copyDataBase Error : " + e.getMessage());
}
}
祝你好运。
答案 2 :(得分:0)
您还没有添加日志,但仍然可以从您的代码中看到异常即将到来,您尝试将某些内容插入数据库 db.insert(table_name,null,cv); < / strong>即可。
您正在获取空指针异常,因为您的SQLiteDatabase db变量未初始化。您需要获取数据库的实例(在插入的情况下,您需要获取可写数据库)。
因此,在插入之前需要在insertContact方法中编写此行:
try {
SQLiteDatabase db = getWritableDatabase();
// rest of your code
} catch(SQLiteException e) {
//log the exception
}